assertSee method
Implementation
TestResponse assertSee(String text) => _check(
body.contains(text),
'Expected body to contain [$text]. Body: $body',
);
TestResponse assertSee(String text) => _check(
body.contains(text),
'Expected body to contain [$text]. Body: $body',
);