expect function

void expect (dynamic actual, dynamic matcher, { String reason, dynamic skip })

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:

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);
}