method method

Future<TestResponse> method(
  1. String verb
)

Executes this request with the given HTTP verb.

The returned Future will complete with an instance of TestResponse which can be used in test expectations using hasResponse or hasStatus.

Implementation

Future<TestResponse> method(String verb) {
  return _executeRequest(verb);
}