| 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/plugin/protocol/protocol.dart'; | 7 import 'package:analysis_server/plugin/protocol/protocol.dart'; |
| 8 import 'package:test/test.dart'; | 8 import 'package:test/test.dart'; |
| 9 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 9 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 10 | 10 |
| 11 import '../../utils.dart'; | |
| 12 import '../integration_tests.dart'; | 11 import '../integration_tests.dart'; |
| 13 | 12 |
| 14 main() { | 13 main() { |
| 15 initializeTestEnvironment(); | |
| 16 defineReflectiveSuite(() { | 14 defineReflectiveSuite(() { |
| 17 defineReflectiveTests(Test); | 15 defineReflectiveTests(Test); |
| 18 }); | 16 }); |
| 19 } | 17 } |
| 20 | 18 |
| 21 @reflectiveTest | 19 @reflectiveTest |
| 22 class Test extends AbstractAnalysisServerIntegrationTest { | 20 class Test extends AbstractAnalysisServerIntegrationTest { |
| 23 test_occurrences() { | 21 test_occurrences() { |
| 24 String pathname = sourcePath('test.dart'); | 22 String pathname = sourcePath('test.dart'); |
| 25 String text = r''' | 23 String text = r''' |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 Set<int> foundOffsets = findOffsets(elementName); | 60 Set<int> foundOffsets = findOffsets(elementName); |
| 63 expect(foundOffsets, equals(expectedOffsets)); | 61 expect(foundOffsets, equals(expectedOffsets)); |
| 64 } | 62 } |
| 65 | 63 |
| 66 check('i', ['i = 0', 'i < 10', 'i++', 'i;']); | 64 check('i', ['i = 0', 'i < 10', 'i++', 'i;']); |
| 67 check('j', ['j = 0', 'j < i', 'j++', 'j;']); | 65 check('j', ['j = 0', 'j < i', 'j++', 'j;']); |
| 68 check('sum', ['sum = 0', 'sum +=', 'sum)']); | 66 check('sum', ['sum = 0', 'sum +=', 'sum)']); |
| 69 }); | 67 }); |
| 70 } | 68 } |
| 71 } | 69 } |
| OLD | NEW |