| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 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 | 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:test_reflective_loader/test_reflective_loader.dart'; | 5 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 6 | 6 |
| 7 import 'api_signature_test.dart' as api_signature; | 7 import 'api_signature_test.dart' as api_signature; |
| 8 import 'file_repository_test.dart' as file_repository; | 8 import 'file_repository_test.dart' as file_repository; |
| 9 import 'flat_buffers_test.dart' as flat_buffers; | 9 import 'flat_buffers_test.dart' as flat_buffers; |
| 10 import 'libraries_reader_test.dart' as libraries_reader; | |
| 11 import 'processed_options_test.dart' as processed_options; | 10 import 'processed_options_test.dart' as processed_options; |
| 12 import 'uri_resolver_test.dart' as uri_resolver; | 11 import 'uri_resolver_test.dart' as uri_resolver; |
| 13 | 12 |
| 14 /// Utility for manually running all tests. | 13 /// Utility for manually running all tests. |
| 15 main() { | 14 main() { |
| 16 defineReflectiveSuite(() { | 15 defineReflectiveSuite(() { |
| 17 api_signature.main(); | 16 api_signature.main(); |
| 18 file_repository.main(); | 17 file_repository.main(); |
| 19 flat_buffers.main(); | 18 flat_buffers.main(); |
| 20 libraries_reader.main(); | |
| 21 processed_options.main(); | 19 processed_options.main(); |
| 22 uri_resolver.main(); | 20 uri_resolver.main(); |
| 23 }, name: 'incremental'); | 21 }, name: 'incremental'); |
| 24 } | 22 } |
| OLD | NEW |