expect function
- dynamic actual,
- dynamic matcher, {
- String? reason,
- dynamic skip,
Assert that actual
matches matcher
.
See matcher_expect.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();
matcher_expect.expect(actual, matcher, reason: reason, skip: skip);
}