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

Unified Diff: pkg/analysis_server/test/integration/analysis/get_errors_nonStandard_sdk.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_nonStandard_sdk.dart
diff --git a/pkg/analysis_server/test/integration/analysis/get_errors_nonStandard_sdk.dart b/pkg/analysis_server/test/integration/analysis/get_errors_nonStandard_sdk.dart
index 6c91c8015123c74ae6c9d94b7d4785577f069b4c..6e803844d99ef7afa16204e91eae0f45c571ff41 100644
--- a/pkg/analysis_server/test/integration/analysis/get_errors_nonStandard_sdk.dart
+++ b/pkg/analysis_server/test/integration/analysis/get_errors_nonStandard_sdk.dart
@@ -17,7 +17,6 @@ import '../integration_tests.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(AnalysisDomainGetErrorsTest);
- defineReflectiveTests(AnalysisDomainGetErrorsTest_Driver);
});
}
@@ -25,7 +24,8 @@ main() {
* Tests that when an SDK path is specified on the command-line (via the `--sdk`
* argument) that the specified SDK is used.
*/
-class AbstractAnalysisDomainGetErrorsTest
+@reflectiveTest
+class AnalysisDomainGetErrorsTest
extends AbstractAnalysisServerIntegrationTest {
String createNonStandardSdk() {
MockSdkLibrary fakeLibrary =
@@ -93,13 +93,3 @@ import 'dart:fake';
expect(errors[0].code, 'unused_import');
}
}
-
-@reflectiveTest
-class AnalysisDomainGetErrorsTest extends AbstractAnalysisDomainGetErrorsTest {}
-
-@reflectiveTest
-class AnalysisDomainGetErrorsTest_Driver
- extends AbstractAnalysisDomainGetErrorsTest {
- @override
- bool get enableNewAnalysisDriver => true;
-}

Powered by Google App Engine
This is Rietveld 408576698