| OLD | NEW |
| 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 library test.edit.assists; | 5 library test.edit.assists; |
| 6 | 6 |
| 7 import 'package:analysis_server/plugin/protocol/protocol.dart'; | 7 import 'package:analysis_server/plugin/protocol/protocol.dart'; |
| 8 import 'package:analysis_server/src/edit/edit_domain.dart'; | 8 import 'package:analysis_server/src/edit/edit_domain.dart'; |
| 9 import 'package:plugin/manager.dart'; | 9 import 'package:plugin/manager.dart'; |
| 10 import 'package:test/test.dart'; |
| 10 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 11 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 11 import 'package:unittest/unittest.dart' hide ERROR; | |
| 12 | 12 |
| 13 import '../analysis_abstract.dart'; | 13 import '../analysis_abstract.dart'; |
| 14 import '../utils.dart'; | 14 import '../utils.dart'; |
| 15 | 15 |
| 16 main() { | 16 main() { |
| 17 initializeTestEnvironment(); | 17 initializeTestEnvironment(); |
| 18 defineReflectiveTests(AssistsTest); | 18 defineReflectiveSuite(() { |
| 19 defineReflectiveTests(AssistsTest); |
| 20 }); |
| 19 } | 21 } |
| 20 | 22 |
| 21 @reflectiveTest | 23 @reflectiveTest |
| 22 class AssistsTest extends AbstractAnalysisTest { | 24 class AssistsTest extends AbstractAnalysisTest { |
| 23 List<SourceChange> changes; | 25 List<SourceChange> changes; |
| 24 | 26 |
| 25 prepareAssists(String search, [int length = 0]) async { | 27 prepareAssists(String search, [int length = 0]) async { |
| 26 int offset = findOffset(search); | 28 int offset = findOffset(search); |
| 27 await prepareAssistsAt(offset, length); | 29 await prepareAssistsAt(offset, length); |
| 28 } | 30 } |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 if (change.message == message) { | 109 if (change.message == message) { |
| 108 String resultCode = | 110 String resultCode = |
| 109 SourceEdit.applySequence(testCode, change.edits[0].edits); | 111 SourceEdit.applySequence(testCode, change.edits[0].edits); |
| 110 expect(resultCode, expectedCode); | 112 expect(resultCode, expectedCode); |
| 111 return; | 113 return; |
| 112 } | 114 } |
| 113 } | 115 } |
| 114 fail("Expected to find |$message| in\n" + changes.join('\n')); | 116 fail("Expected to find |$message| in\n" + changes.join('\n')); |
| 115 } | 117 } |
| 116 } | 118 } |
| OLD | NEW |