blob: 0b4bbb3089c967004a1b1d6d7587368b27e2ef03 [file] [log] [blame]
import 'package:http/http.dart';
import 'package:http_client_conformance_tests/http_client_conformance_tests.dart';
import 'package:test/test.dart';
class MyHttpClient extends BaseClient {
@override
Future<StreamedResponse> send(BaseRequest request) async {
// Your implementation here.
throw UnsupportedError('implement this method');
}
}
void main() {
group('client conformance tests', () {
testAll(MyHttpClient.new);
});
}