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

Side by Side Diff: pkg/analysis_server/test/edit/assists_test.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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import 'dart:async'; 5 import 'dart:async';
6 6
7 import 'package:analysis_server/protocol/protocol.dart'; 7 import 'package:analysis_server/protocol/protocol.dart';
8 import 'package:analysis_server/protocol/protocol_generated.dart'; 8 import 'package:analysis_server/protocol/protocol_generated.dart';
9 import 'package:analysis_server/src/edit/edit_domain.dart'; 9 import 'package:analysis_server/src/edit/edit_domain.dart';
10 import 'package:analysis_server/src/plugin/plugin_manager.dart'; 10 import 'package:analysis_server/src/plugin/plugin_manager.dart';
(...skipping 25 matching lines...) Expand all
36 prepareAssistsAt(int offset, int length) async { 36 prepareAssistsAt(int offset, int length) async {
37 Request request = 37 Request request =
38 new EditGetAssistsParams(testFile, offset, length).toRequest('0'); 38 new EditGetAssistsParams(testFile, offset, length).toRequest('0');
39 Response response = await waitResponse(request); 39 Response response = await waitResponse(request);
40 var result = new EditGetAssistsResult.fromResponse(response); 40 var result = new EditGetAssistsResult.fromResponse(response);
41 changes = result.assists; 41 changes = result.assists;
42 } 42 }
43 43
44 @override 44 @override
45 void setUp() { 45 void setUp() {
46 enableNewAnalysisDriver = true;
47 super.setUp(); 46 super.setUp();
48 createProject(); 47 createProject();
49 ExtensionManager manager = new ExtensionManager(); 48 ExtensionManager manager = new ExtensionManager();
50 manager.processPlugins([server.serverPlugin]); 49 manager.processPlugins([server.serverPlugin]);
51 handler = new EditDomainHandler(server); 50 handler = new EditDomainHandler(server);
52 } 51 }
53 52
54 test_fromPlugins() async { 53 test_fromPlugins() async {
55 PluginInfo info = new DiscoveredPluginInfo('a', 'b', 'c', null, null); 54 PluginInfo info = new DiscoveredPluginInfo('a', 'b', 'c', null, null);
56 String message = 'From a plugin'; 55 String message = 'From a plugin';
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 if (change.message == message) { 134 if (change.message == message) {
136 String resultCode = 135 String resultCode =
137 SourceEdit.applySequence(testCode, change.edits[0].edits); 136 SourceEdit.applySequence(testCode, change.edits[0].edits);
138 expect(resultCode, expectedCode); 137 expect(resultCode, expectedCode);
139 return; 138 return;
140 } 139 }
141 } 140 }
142 fail("Expected to find |$message| in\n" + changes.join('\n')); 141 fail("Expected to find |$message| in\n" + changes.join('\n'));
143 } 142 }
144 } 143 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/domain_execution_test.dart ('k') | pkg/analysis_server/test/edit/fixes_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698