Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1395)

Unified Diff: pkg/analysis_server/test/integration/test_all.dart

Issue 2394683006: Switch analysis_server to use 'package:test'. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/test/integration/test_all.dart
diff --git a/pkg/analysis_server/test/integration/test_all.dart b/pkg/analysis_server/test/integration/test_all.dart
index e217c925f73afc7f58a07d630137da902da34792..7ab4a7d952d13c51442f9a2e2708dc2dca7ff6e4 100644
--- a/pkg/analysis_server/test/integration/test_all.dart
+++ b/pkg/analysis_server/test/integration/test_all.dart
@@ -4,7 +4,7 @@
library test.integration.all;
-import 'package:unittest/unittest.dart';
+import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../utils.dart';
import 'analysis/test_all.dart' as analysis_test_all;
@@ -17,10 +17,10 @@ import 'server/test_all.dart' as server_test_all;
*/
main() {
initializeTestEnvironment();
- group('analysis_server_integration', () {
+ defineReflectiveSuite(() {
analysis_test_all.main();
completion_test_all.main();
search_test_all.main();
server_test_all.main();
- });
+ }, name: 'analysis_server_integration');
}

Powered by Google App Engine
This is Rietveld 408576698