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

Unified Diff: pkg/analysis_server/test/integration/analysis/get_errors_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/get_errors_test.dart
diff --git a/pkg/analysis_server/test/integration/analysis/get_errors_test.dart b/pkg/analysis_server/test/integration/analysis/get_errors_test.dart
index ce66f0569bf2d5122c9ba7d02f4682c0c8bfe534..ed7e5193ffec3d74ede01f34c8aa5b58caa45210 100644
--- a/pkg/analysis_server/test/integration/analysis/get_errors_test.dart
+++ b/pkg/analysis_server/test/integration/analysis/get_errors_test.dart
@@ -14,17 +14,11 @@ import '../integration_tests.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(GetErrorsTest);
- defineReflectiveTests(GetErrorsTest_Driver);
});
}
-/**
- * Base class for testing the "analysis.getErrors" request.
- */
-class AnalysisDomainGetErrorsTest
- extends AbstractAnalysisServerIntegrationTest {
- AnalysisDomainGetErrorsTest();
-
+@reflectiveTest
+class GetErrorsTest extends AbstractAnalysisServerIntegrationTest {
test_getErrors() {
String pathname = sourcePath('test.dart');
String text = r'''
@@ -42,12 +36,3 @@ main() {
return analysisFinished.then((_) => finishTest());
}
}
-
-@reflectiveTest
-class GetErrorsTest extends AnalysisDomainGetErrorsTest {}
-
-@reflectiveTest
-class GetErrorsTest_Driver extends AnalysisDomainGetErrorsTest {
- @override
- bool get enableNewAnalysisDriver => true;
-}

Powered by Google App Engine
This is Rietveld 408576698