SerializableListWidgetTester<T> constructor
SerializableListWidgetTester<T> ({
- required String testGroupName,
- required String mainTestName,
- required FutureOr<
void> testFunction(- T testInput,
- SerializableTester tester,
- WidgetTester widgetTester
- required Map<
String, T Function()> testMap, - ListTesterMode mode = ListTesterMode.testOutput,
testGroupName
and mainTestName
are passed as the test groups this
tester is a part of.
mode
determines the behaviour of runTests. If it's in
ListTesterMode.generateOutput, an output file will be generated based on
the output. If it's in ListTesterMode.testOutput the output will be
tested against the output file generated with a previous run of
ListTesterMode.generateOutput
testMap
is a map with key being the test name of the test, and the value
being a supplier for an initial testValue.
testFunction
is the common test that will be run on everything in
testMap
. Use the provided SerializableTester to add your test values.
Implementation
SerializableListWidgetTester({
required this.testGroupName,
required this.mainTestName,
required this.testFunction,
required this.testMap,
this.mode = ListTesterMode.testOutput,
});