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

Unified Diff: pkg/analysis_server/test/integration/search/get_type_hierarchy_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/search/get_type_hierarchy_test.dart
diff --git a/pkg/analysis_server/test/integration/search/get_type_hierarchy_test.dart b/pkg/analysis_server/test/integration/search/get_type_hierarchy_test.dart
index 2e1e77858b5e5aa98411aa25376f9313da53b433..84149adf6cb405f1ea49e033608783737e834a92 100644
--- a/pkg/analysis_server/test/integration/search/get_type_hierarchy_test.dart
+++ b/pkg/analysis_server/test/integration/search/get_type_hierarchy_test.dart
@@ -13,12 +13,11 @@ import '../integration_tests.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(GetTypeHierarchyTest);
- defineReflectiveTests(GetTypeHierarchyTest_Driver);
});
}
-class AbstractGetTypeHierarchyTest
- extends AbstractAnalysisServerIntegrationTest {
+@reflectiveTest
+class GetTypeHierarchyTest extends AbstractAnalysisServerIntegrationTest {
/**
* Pathname of the main file to run tests in.
*/
@@ -229,15 +228,6 @@ class Pivot /* target */ extends Base2 {}
}
}
-@reflectiveTest
-class GetTypeHierarchyTest extends AbstractGetTypeHierarchyTest {}
-
-@reflectiveTest
-class GetTypeHierarchyTest_Driver extends AbstractGetTypeHierarchyTest {
- @override
- bool get enableNewAnalysisDriver => true;
-}
-
/**
* Results of a getTypeHierarchy request, processed for easier testing.
*/

Powered by Google App Engine
This is Rietveld 408576698