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

Unified Diff: pkg/analysis_server/test/analysis/notification_analyzedFiles_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/analysis/notification_analyzedFiles_test.dart
diff --git a/pkg/analysis_server/test/analysis/notification_analyzedFiles_test.dart b/pkg/analysis_server/test/analysis/notification_analyzedFiles_test.dart
index 3cbddc5642915758b0c72ab140c214d66daee83d..5427869df9ec7f03f2efb40368fda3871da8b236 100644
--- a/pkg/analysis_server/test/analysis/notification_analyzedFiles_test.dart
+++ b/pkg/analysis_server/test/analysis/notification_analyzedFiles_test.dart
@@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library test.analysis.notification.analyzedDirectories;
-
import 'dart:async';
import 'package:analysis_server/protocol/protocol.dart';
@@ -18,7 +16,6 @@ import '../mocks.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(AnalysisNotificationAnalyzedFilesTest);
- defineReflectiveTests(AnalysisNotificationAnalyzedFilesTest_Driver);
});
}
@@ -47,6 +44,8 @@ class AnalysisNotificationAnalyzedFilesTest extends AbstractAnalysisTest {
}
void setUp() {
+ enableNewAnalysisDriver = true;
+ generateSummaryFiles = true;
super.setUp();
createProject();
}
@@ -114,14 +113,3 @@ class A {}
removeGeneralAnalysisSubscription(GeneralAnalysisService.ANALYZED_FILES);
}
}
-
-@reflectiveTest
-class AnalysisNotificationAnalyzedFilesTest_Driver
- extends AnalysisNotificationAnalyzedFilesTest {
- @override
- void setUp() {
- enableNewAnalysisDriver = true;
- generateSummaryFiles = true;
- super.setUp();
- }
-}

Powered by Google App Engine
This is Rietveld 408576698