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

Unified Diff: pkg/analysis_server/test/integration/analysis/highlights_test2.dart

Issue 2820893002: Make the analysis server integration tests driver only. (Closed)
Patch Set: uncomment test code Created 3 years, 8 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/analysis/highlights_test2.dart
diff --git a/pkg/analysis_server/test/integration/analysis/highlights_test2.dart b/pkg/analysis_server/test/integration/analysis/highlights_test2.dart
index b05aa1f41b12045abc2d6be456f1866102dc159d..962d8c634a4ff7690594efe37aaa289cb8b19a57 100644
--- a/pkg/analysis_server/test/integration/analysis/highlights_test2.dart
+++ b/pkg/analysis_server/test/integration/analysis/highlights_test2.dart
@@ -13,12 +13,11 @@ import '../integration_tests.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(AnalysisHighlightsTest);
- defineReflectiveTests(AnalysisHighlightsTest_Driver);
});
}
-class AbstractAnalysisHighlightsTest
- extends AbstractAnalysisServerIntegrationTest {
+@reflectiveTest
+class AnalysisHighlightsTest extends AbstractAnalysisServerIntegrationTest {
Future startServer(
{bool checked: true, int diagnosticPort, int servicesPort}) {
return server.start(
@@ -159,12 +158,3 @@ int topLevelVariable;
});
}
}
-
-@reflectiveTest
-class AnalysisHighlightsTest extends AbstractAnalysisHighlightsTest {}
-
-@reflectiveTest
-class AnalysisHighlightsTest_Driver extends AbstractAnalysisHighlightsTest {
- @override
- bool get enableNewAnalysisDriver => true;
-}

Powered by Google App Engine
This is Rietveld 408576698