blob: 87e90940f018f851c2051cf5c9c41014ba794049 [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());
});
}