blob: a50d34bb9cd15e855009fc871732422a0e97cb85 [file] [log] [blame]
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
library services.all_test;
import 'analysis_server_test.dart' as analysis_server_test;
import 'bench_test.dart' as bench_test;
import 'common_server_api_protobuf_test.dart'
as common_server_api_protobuf_test;
import 'common_server_api_test.dart' as common_server_api_test;
import 'common_test.dart' as common_test;
import 'compiler_test.dart' as compiler_test;
import 'flutter_analysis_server_test.dart' as flutter_analysis_server_test;
import 'flutter_web_test.dart' as flutter_web_test;
import 'gae_deployed_test.dart' as gae_deployed_test;
import 'pub_test.dart' as pub_test;
import 'redis_cache_test.dart' as redis_test;
import 'shelf_cors_test.dart' as shelf_cors_test;
import 'summarize_test.dart' as summarize_test;
void main() async {
analysis_server_test.defineTests();
bench_test.defineTests();
common_server_api_test.defineTests();
common_server_api_protobuf_test.defineTests();
common_test.defineTests();
compiler_test.defineTests();
flutter_analysis_server_test.defineTests();
flutter_web_test.defineTests();
gae_deployed_test.defineTests();
pub_test.defineTests();
redis_test.defineTests();
shelf_cors_test.defineTests();
summarize_test.defineTests();
}