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

Unified Diff: pkg/analysis_server/test/domain_diagnostic_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/domain_diagnostic_test.dart
diff --git a/pkg/analysis_server/test/domain_diagnostic_test.dart b/pkg/analysis_server/test/domain_diagnostic_test.dart
index b4b2cf4fe8f7c2c88b8bfdb9bc5975f9f9864c27..8cb7e8b1c3eb935d322727a4ad1b64998f90fa84 100644
--- a/pkg/analysis_server/test/domain_diagnostic_test.dart
+++ b/pkg/analysis_server/test/domain_diagnostic_test.dart
@@ -12,7 +12,6 @@ import 'analysis_abstract.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(DiagnosticDomainTest);
- defineReflectiveTests(DiagnosticDomainTest_Driver);
});
}
@@ -20,6 +19,8 @@ main() {
class DiagnosticDomainTest extends AbstractAnalysisTest {
@override
void setUp() {
+ enableNewAnalysisDriver = true;
+ generateSummaryFiles = true;
super.setUp();
handler = new DiagnosticDomainHandler(server);
server.handlers = [handler];
@@ -56,13 +57,3 @@ class DiagnosticDomainTest extends AbstractAnalysisTest {
expect(result.contexts, isEmpty);
}
}
-
-@reflectiveTest
-class DiagnosticDomainTest_Driver extends DiagnosticDomainTest {
- @override
- void setUp() {
- enableNewAnalysisDriver = true;
- generateSummaryFiles = true;
- super.setUp();
- }
-}
« no previous file with comments | « pkg/analysis_server/test/context_manager_test.dart ('k') | pkg/analysis_server/test/search/member_references_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698