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

Unified Diff: pkg/analysis_server/test/integration/server/shutdown_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/server/shutdown_test.dart
diff --git a/pkg/analysis_server/test/integration/server/shutdown_test.dart b/pkg/analysis_server/test/integration/server/shutdown_test.dart
index 53a01a9d59e1da9df77746f808cb49b38689d71a..a31fcbfdc72a6e82436578c8b203b6f8afd35313 100644
--- a/pkg/analysis_server/test/integration/server/shutdown_test.dart
+++ b/pkg/analysis_server/test/integration/server/shutdown_test.dart
@@ -12,11 +12,11 @@ import '../integration_tests.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(ShutdownTest);
- defineReflectiveTests(ShutdownTest_Driver);
});
}
-class AbstractShutdownTest extends AbstractAnalysisServerIntegrationTest {
+@reflectiveTest
+class ShutdownTest extends AbstractAnalysisServerIntegrationTest {
test_shutdown() {
return sendServerShutdown().then((_) {
return new Future.delayed(new Duration(seconds: 1)).then((_) {
@@ -29,12 +29,3 @@ class AbstractShutdownTest extends AbstractAnalysisServerIntegrationTest {
});
}
}
-
-@reflectiveTest
-class ShutdownTest extends AbstractShutdownTest {}
-
-@reflectiveTest
-class ShutdownTest_Driver extends AbstractShutdownTest {
- @override
- bool get enableNewAnalysisDriver => true;
-}

Powered by Google App Engine
This is Rietveld 408576698