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

Unified Diff: pkg/analysis_server/test/integration/execution/map_uri_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/execution/map_uri_test.dart
diff --git a/pkg/analysis_server/test/integration/execution/map_uri_test.dart b/pkg/analysis_server/test/integration/execution/map_uri_test.dart
index b5ff7349a344d1823daf4a56778531b2bf023b64..8d6215a8e020d6e21f5360eb4f0957b89395437d 100644
--- a/pkg/analysis_server/test/integration/execution/map_uri_test.dart
+++ b/pkg/analysis_server/test/integration/execution/map_uri_test.dart
@@ -11,12 +11,11 @@ import '../integration_tests.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(MapUriTest);
- defineReflectiveTests(MapUriTest_Driver);
});
}
-abstract class AbstractMapUriTest
- extends AbstractAnalysisServerIntegrationTest {
+@reflectiveTest
+class MapUriTest extends AbstractAnalysisServerIntegrationTest {
test_mapUri() async {
String pathname = sourcePath('lib/main.dart');
writeFile(pathname, '// dummy');
@@ -39,12 +38,3 @@ abstract class AbstractMapUriTest
}
}
}
-
-@reflectiveTest
-class MapUriTest extends AbstractMapUriTest {}
-
-@reflectiveTest
-class MapUriTest_Driver extends AbstractMapUriTest {
- @override
- bool get enableNewAnalysisDriver => true;
-}

Powered by Google App Engine
This is Rietveld 408576698