| 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 import 'package:analysis_server/plugin/protocol/protocol.dart'; | 5 import 'package:analysis_server/plugin/protocol/protocol.dart'; |
| 6 import 'package:test/test.dart'; | 6 import 'package:test/test.dart'; |
| 7 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 7 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 8 | 8 |
| 9 import '../integration_tests.dart'; | 9 import '../integration_tests.dart'; |
| 10 | 10 |
| 11 main() { | 11 main() { |
| 12 defineReflectiveSuite(() { | 12 defineReflectiveSuite(() { |
| 13 defineReflectiveTests(GetSuggestionsTest); | 13 defineReflectiveTests(GetSuggestionsTest); |
| 14 defineReflectiveTests(GetSuggestionsTest_Driver); | |
| 15 }); | 14 }); |
| 16 } | 15 } |
| 17 | 16 |
| 18 class AbstractGetSuggestionsTest extends AbstractAnalysisServerIntegrationTest { | 17 class AbstractGetSuggestionsTest extends AbstractAnalysisServerIntegrationTest { |
| 19 String path; | 18 String path; |
| 20 String content; | 19 String content; |
| 21 int completionOffset; | 20 int completionOffset; |
| 22 | 21 |
| 23 void setTestSource(String relPath, String content) { | 22 void setTestSource(String relPath, String content) { |
| 24 path = sourcePath(relPath); | 23 path = sourcePath(relPath); |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 // Exception expected | 116 // Exception expected |
| 118 return errorToken; | 117 return errorToken; |
| 119 }).then((result) { | 118 }).then((result) { |
| 120 expect(result, same(errorToken)); | 119 expect(result, same(errorToken)); |
| 121 }); | 120 }); |
| 122 } | 121 } |
| 123 } | 122 } |
| 124 | 123 |
| 125 @reflectiveTest | 124 @reflectiveTest |
| 126 class GetSuggestionsTest extends AbstractGetSuggestionsTest {} | 125 class GetSuggestionsTest extends AbstractGetSuggestionsTest {} |
| 127 | |
| 128 @reflectiveTest | |
| 129 class GetSuggestionsTest_Driver extends AbstractGetSuggestionsTest { | |
| 130 @override | |
| 131 bool get enableNewAnalysisDriver => true; | |
| 132 } | |
| OLD | NEW |