assertBodyContains method
Asserts that the response body contains nest.
Implementation
TestResponse assertBodyContains(String nest) {
expect(raw.body, contains(nest));
return this;
}
Asserts that the response body contains nest.
TestResponse assertBodyContains(String nest) {
expect(raw.body, contains(nest));
return this;
}