OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 6 |
| 7 import 'import_elements_computer_test.dart' as import_elements_computer_test; |
| 8 import 'imported_elements_computer_test.dart' |
| 9 as imported_elements_computer_test; |
| 10 |
| 11 main() { |
| 12 defineReflectiveSuite(() { |
| 13 import_elements_computer_test.main(); |
| 14 imported_elements_computer_test.main(); |
| 15 }); |
| 16 } |
OLD | NEW |