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

Unified Diff: pkg/analysis_server/test/integration/analysis/get_hover_test.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/get_hover_test.dart
diff --git a/pkg/analysis_server/test/integration/analysis/get_hover_test.dart b/pkg/analysis_server/test/integration/analysis/get_hover_test.dart
index cf293bf7dbddc1405faf6fb9963147370b569a3b..498e7012de2f483c84a62b778e5830b9042cc4f9 100644
--- a/pkg/analysis_server/test/integration/analysis/get_hover_test.dart
+++ b/pkg/analysis_server/test/integration/analysis/get_hover_test.dart
@@ -14,11 +14,11 @@ import '../integration_tests.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(AnalysisGetHoverIntegrationTest);
- defineReflectiveTests(AnalysisGetHoverIntegrationTest_Driver);
});
}
-class AbstractAnalysisGetHoverIntegrationTest
+@reflectiveTest
+class AnalysisGetHoverIntegrationTest
extends AbstractAnalysisServerIntegrationTest {
/**
* Pathname of the file containing Dart code.
@@ -187,14 +187,3 @@ main() {
});
}
}
-
-@reflectiveTest
-class AnalysisGetHoverIntegrationTest
- extends AbstractAnalysisGetHoverIntegrationTest {}
-
-@reflectiveTest
-class AnalysisGetHoverIntegrationTest_Driver
- extends AbstractAnalysisGetHoverIntegrationTest {
- @override
- bool get enableNewAnalysisDriver => true;
-}

Powered by Google App Engine
This is Rietveld 408576698