| 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.overrides; | 5 library test.integration.analysis.overrides; |
| 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_overrides() { | 21 test_overrides() { |
| 24 String pathname = sourcePath('test.dart'); | 22 String pathname = sourcePath('test.dart'); |
| 25 String text = r''' | 23 String text = r''' |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 checkOverrides('method1', false, ['Interface1', 'Interface2']); | 115 checkOverrides('method1', false, ['Interface1', 'Interface2']); |
| 118 checkOverrides('method2', true, ['Interface1']); | 116 checkOverrides('method2', true, ['Interface1']); |
| 119 checkOverrides('method3', false, ['Interface1']); | 117 checkOverrides('method3', false, ['Interface1']); |
| 120 checkOverrides('method4', true, ['Interface2']); | 118 checkOverrides('method4', true, ['Interface2']); |
| 121 checkOverrides('method5', false, ['Interface2']); | 119 checkOverrides('method5', false, ['Interface2']); |
| 122 checkOverrides('method6', true, []); | 120 checkOverrides('method6', true, []); |
| 123 checkOverrides('method7', false, []); | 121 checkOverrides('method7', false, []); |
| 124 }); | 122 }); |
| 125 } | 123 } |
| 126 } | 124 } |
| OLD | NEW |