get method
Makes a GET request to the given path.
Implementation
Future<TestResponse> get(String path, {Map<String, String>? headers}) async {
await _ensureStarted();
final res = await http.get(Uri.parse('http://localhost:$_port$path'), headers: headers);
return TestResponse(res);
}