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

Unified Diff: pkg/analysis_server/test/integration/analysis/lint_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/lint_test.dart
diff --git a/pkg/analysis_server/test/integration/analysis/lint_test.dart b/pkg/analysis_server/test/integration/analysis/lint_test.dart
index 8a76f0fe40515926881f7942e2616f1de7c3cea4..b1d54ad90cc94381c084d989512e6ff0e4808356 100644
--- a/pkg/analysis_server/test/integration/analysis/lint_test.dart
+++ b/pkg/analysis_server/test/integration/analysis/lint_test.dart
@@ -15,8 +15,8 @@ main() {
});
}
-class AbstractLintIntegrationTest
- extends AbstractAnalysisServerIntegrationTest {
+@reflectiveTest
+class LintIntegrationTest extends AbstractAnalysisServerIntegrationTest {
test_no_lints_when_not_specified() async {
String source = sourcePath('test.dart');
writeFile(
@@ -91,6 +91,3 @@ class a { // lint: not CamelCase
expect(error.type, AnalysisErrorType.LINT);
}
}
-
-@reflectiveTest
-class LintIntegrationTest extends AbstractLintIntegrationTest {}

Powered by Google App Engine
This is Rietveld 408576698