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

Unified Diff: pkg/analysis_server/test/src/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/src/test_all.dart
diff --git a/pkg/analysis_server/test/src/test_all.dart b/pkg/analysis_server/test/src/test_all.dart
index a3642f602779ee58d89cfe5046fff722148e4c10..f2f58e7c374f97a57642f507cd34cb914c75c457 100644
--- a/pkg/analysis_server/test/src/test_all.dart
+++ b/pkg/analysis_server/test/src/test_all.dart
@@ -4,7 +4,7 @@
library test.src;
-import 'package:unittest/unittest.dart';
+import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../utils.dart';
import 'utilities/test_all.dart' as utilities_all;
@@ -14,7 +14,7 @@ import 'utilities/test_all.dart' as utilities_all;
*/
main() {
initializeTestEnvironment();
- group('analysis_server', () {
+ defineReflectiveSuite(() {
utilities_all.main();
- });
+ }, name: 'analysis_server');
}

Powered by Google App Engine
This is Rietveld 408576698