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

Unified Diff: pkg/analysis_server/test/services/completion/dart/local_library_contributor_test.dart

Issue 2863593004: Remove the non-driver versions of several tests (Closed)
Patch Set: Created 3 years, 7 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/services/completion/dart/local_library_contributor_test.dart
diff --git a/pkg/analysis_server/test/services/completion/dart/local_library_contributor_test.dart b/pkg/analysis_server/test/services/completion/dart/local_library_contributor_test.dart
index 6a49e954b9abaf7c4f8db7ba87cac7b5096d0be0..308585b3664d3116d7af1ef54c944088a38811d6 100644
--- a/pkg/analysis_server/test/services/completion/dart/local_library_contributor_test.dart
+++ b/pkg/analysis_server/test/services/completion/dart/local_library_contributor_test.dart
@@ -14,13 +14,15 @@ import 'completion_contributor_util.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(LocalLibraryContributorTest);
- defineReflectiveTests(LocalLibraryContributorTest_Driver);
});
}
@reflectiveTest
class LocalLibraryContributorTest extends DartCompletionContributorTest {
@override
+ bool get enableNewAnalysisDriver => true;
+
+ @override
DartCompletionContributor createContributor() {
return new LocalLibraryContributor();
}
@@ -307,9 +309,3 @@ class LocalLibraryContributorTest extends DartCompletionContributorTest {
assertNotSuggested('m');
}
}
-
-@reflectiveTest
-class LocalLibraryContributorTest_Driver extends LocalLibraryContributorTest {
- @override
- bool get enableNewAnalysisDriver => true;
-}

Powered by Google App Engine
This is Rietveld 408576698