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.integration.analysis.occurrences; | 5 library test.integration.analysis.occurrences; |
6 | 6 |
7 import 'package:analysis_server/src/protocol.dart'; | 7 import 'package:analysis_server/src/protocol.dart'; |
| 8 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
8 import 'package:unittest/unittest.dart'; | 9 import 'package:unittest/unittest.dart'; |
9 | 10 |
10 import '../../reflective_tests.dart'; | |
11 import '../integration_tests.dart'; | 11 import '../integration_tests.dart'; |
12 | 12 |
13 main() { | 13 main() { |
14 runReflectiveTests(Test); | 14 defineReflectiveTests(Test); |
15 } | 15 } |
16 | 16 |
17 @reflectiveTest | 17 @reflectiveTest |
18 class Test extends AbstractAnalysisServerIntegrationTest { | 18 class Test extends AbstractAnalysisServerIntegrationTest { |
19 test_occurrences() { | 19 test_occurrences() { |
20 String pathname = sourcePath('test.dart'); | 20 String pathname = sourcePath('test.dart'); |
21 String text = r''' | 21 String text = r''' |
22 main() { | 22 main() { |
23 int sum = 0; | 23 int sum = 0; |
24 for (int i = 0; i < 10; i++) { | 24 for (int i = 0; i < 10; i++) { |
(...skipping 29 matching lines...) Expand all Loading... |
54 .toSet(); | 54 .toSet(); |
55 Set<int> foundOffsets = findOffsets(elementName); | 55 Set<int> foundOffsets = findOffsets(elementName); |
56 expect(foundOffsets, equals(expectedOffsets)); | 56 expect(foundOffsets, equals(expectedOffsets)); |
57 } | 57 } |
58 check('i', ['i = 0', 'i < 10', 'i++', 'i;']); | 58 check('i', ['i = 0', 'i < 10', 'i++', 'i;']); |
59 check('j', ['j = 0', 'j < i', 'j++', 'j;']); | 59 check('j', ['j = 0', 'j < i', 'j++', 'j;']); |
60 check('sum', ['sum = 0', 'sum +=', 'sum)']); | 60 check('sum', ['sum = 0', 'sum +=', 'sum)']); |
61 }); | 61 }); |
62 } | 62 } |
63 } | 63 } |
OLD | NEW |