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

Unified Diff: pkg/analysis_server/test/services/refactoring/extract_method_test.dart

Issue 2618993003: Run refactoring tests with the new analysis driver. (Closed)
Patch Set: Created 3 years, 11 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/services/refactoring/extract_method_test.dart
diff --git a/pkg/analysis_server/test/services/refactoring/extract_method_test.dart b/pkg/analysis_server/test/services/refactoring/extract_method_test.dart
index 988191352913fd9bc2840ad16e06798555a753cb..55dfe5e21e547547eb07d188cfc90f4d59b5fb80 100644
--- a/pkg/analysis_server/test/services/refactoring/extract_method_test.dart
+++ b/pkg/analysis_server/test/services/refactoring/extract_method_test.dart
@@ -18,6 +18,7 @@ import 'abstract_refactoring.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(ExtractMethodTest);
+ defineReflectiveTests(ExtractMethodTest_Driver);
});
}
@@ -1211,7 +1212,7 @@ res() => dynaFunction();
test_singleExpression_hasAwait() async {
await indexTestUnit('''
import 'dart:async';
-Future<int> getValue() => 42;
+Future<int> getValue() async => 42;
main() async {
int v = await getValue();
print(v);
@@ -1221,7 +1222,7 @@ main() async {
// apply refactoring
return _assertSuccessfulRefactoring('''
import 'dart:async';
-Future<int> getValue() => 42;
+Future<int> getValue() async => 42;
main() async {
int v = await res();
print(v);
@@ -2188,7 +2189,7 @@ main(int p) {
test_statements_hasAwait_dynamicReturnType() async {
await indexTestUnit('''
import 'dart:async';
-Future getValue() => 42;
+Future getValue() async => 42;
main() async {
// start
var v = await getValue();
@@ -2200,7 +2201,7 @@ main() async {
// apply refactoring
return _assertSuccessfulRefactoring('''
import 'dart:async';
-Future getValue() => 42;
+Future getValue() async => 42;
main() async {
// start
var v = await res();
@@ -2218,7 +2219,7 @@ Future res() async {
test_statements_hasAwait_expression() async {
await indexTestUnit('''
import 'dart:async';
-Future<int> getValue() => 42;
+Future<int> getValue() async => 42;
main() async {
// start
int v = await getValue();
@@ -2231,7 +2232,7 @@ main() async {
// apply refactoring
return _assertSuccessfulRefactoring('''
import 'dart:async';
-Future<int> getValue() => 42;
+Future<int> getValue() async => 42;
main() async {
// start
int v = await res();
@@ -2286,7 +2287,7 @@ Future<int> res() async {
test_statements_hasAwait_voidReturnType() async {
await indexTestUnit('''
import 'dart:async';
-Future<int> getValue() => 42;
+Future<int> getValue() async => 42;
main() async {
// start
int v = await getValue();
@@ -2298,7 +2299,7 @@ main() async {
// apply refactoring
return _assertSuccessfulRefactoring('''
import 'dart:async';
-Future<int> getValue() => 42;
+Future<int> getValue() async => 42;
main() async {
// start
await res();
@@ -2842,3 +2843,9 @@ Future<int> newFuture() => null;
}).toList();
}
}
+
+@reflectiveTest
+class ExtractMethodTest_Driver extends ExtractMethodTest {
+ @override
+ bool get enableNewAnalysisDriver => true;
+}

Powered by Google App Engine
This is Rietveld 408576698