TestStore class

Generic test store that provies no-op implementations of all the test storage functions.

See also:

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

createMemoryTests(dynamic object, {bool ignoreImages = true}) List<PendingTest>
Creates a list of Test objects from a given dynamic object. The dynamic object must be either a List of Map objects or an individual Map object that follow the structure defined in Test.fromDynamic.
goldenImageWriter(TestReport testReport) Future<void>
Generic no-op function compatible with the GoldenImageWriter definition.
testImageReader({required TestDeviceInfo deviceInfo, required String imageId, String? suiteName, required String testName, int? testVersion}) Future<Uint8List?>
Generic no-op function compatible with the TestImageReader definition.
testReader(BuildContext? context, {String? suiteName}) Future<List<PendingTest>?>
Generic no-op function compatible with the TestReader definition.
testReporter(TestReport report) Future<bool>
Generic no-op function compatible with the TestReporter definition.
testWriter(BuildContext context, Test test) Future<bool>
Generic no-op function compatible with the TestWriter definition.