expect function
Assert that actual
matches matcher
.
See test_package.expect for details. This is a variant of that function that additionally verifies that there are no asynchronous APIs that have not yet resolved.
See also:
- expectLater for use with asynchronous matchers.
Implementation
void expect(dynamic actual, dynamic matcher, {
String reason,
dynamic skip, // true or a String
}) {
TestAsyncUtils.guardSync();
test_package.expect(actual, matcher, reason: reason, skip: skip);
}