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

Unified Diff: pkg/analysis_server/test/analysis_abstract.dart

Issue 2884593003: Reverse the sense of the flag to make it easier to find test that need to be converted (Closed)
Patch Set: Created 3 years, 7 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/analysis_abstract.dart
diff --git a/pkg/analysis_server/test/analysis_abstract.dart b/pkg/analysis_server/test/analysis_abstract.dart
index f749017819da46a3ce158123df466031c39ade14..9b7a3640a8357997c691fa5396b56ffa0bfe5791 100644
--- a/pkg/analysis_server/test/analysis_abstract.dart
+++ b/pkg/analysis_server/test/analysis_abstract.dart
@@ -52,7 +52,6 @@ int findIdentifierLength(String search) {
* An abstract base for all 'analysis' domain tests.
*/
class AbstractAnalysisTest {
- bool enableNewAnalysisDriver = false;
bool generateSummaryFiles = false;
MockServerChannel serverChannel;
MemoryResourceProvider resourceProvider;
@@ -80,6 +79,8 @@ class AbstractAnalysisTest {
? testDiver.analysisOptions
: testContext.analysisOptions;
+ bool get enableNewAnalysisDriver => true;
+
AnalysisContext get testContext => server.getAnalysisContext(testFile);
AnalysisDriver get testDiver => server.getAnalysisDriver(testFile);
« no previous file with comments | « pkg/analysis_server/test/analysis/update_content_test.dart ('k') | pkg/analysis_server/test/domain_analysis_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698