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

Unified Diff: pkg/analysis_server/test/integration/analysis/update_content_list_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/update_content_list_test.dart
diff --git a/pkg/analysis_server/test/integration/analysis/update_content_list_test.dart b/pkg/analysis_server/test/integration/analysis/update_content_list_test.dart
index 5ca5c08f66d6515b94cf926f8574cb768ff1749f..9cc267ccb4c9310463bceec68d168c7d45fd5c7f 100644
--- a/pkg/analysis_server/test/integration/analysis/update_content_list_test.dart
+++ b/pkg/analysis_server/test/integration/analysis/update_content_list_test.dart
@@ -11,11 +11,11 @@ import '../integration_tests.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(UpdateContentTest);
- defineReflectiveTests(UpdateContentTest_Driver);
});
}
-class AbstractUpdateContentTest extends AbstractAnalysisServerIntegrationTest {
+@reflectiveTest
+class UpdateContentTest extends AbstractAnalysisServerIntegrationTest {
test_updateContent_list() {
String pathname = sourcePath('test.dart');
String goodText = r'''
@@ -50,12 +50,3 @@ main() {
});
}
}
-
-@reflectiveTest
-class UpdateContentTest extends AbstractUpdateContentTest {}
-
-@reflectiveTest
-class UpdateContentTest_Driver extends AbstractUpdateContentTest {
- @override
- bool get enableNewAnalysisDriver => true;
-}

Powered by Google App Engine
This is Rietveld 408576698