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

Unified Diff: pkg/analysis_server/test/integration/analysis/get_errors_test.dart

Issue 2710193002: Update the analysis server integration tests to always run on the analysis driver. (Closed)
Patch Set: Created 3 years, 10 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..b610f6245439918a820bb7b07f36f2cc67f05adb 100644
--- a/pkg/analysis_server/test/integration/analysis/get_errors_test.dart
+++ b/pkg/analysis_server/test/integration/analysis/get_errors_test.dart
@@ -14,16 +14,15 @@ 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 {
+ GetErrorsTest();
test_getErrors() {
String pathname = sourcePath('test.dart');
@@ -42,12 +41,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