| 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 'api_signature_test.dart' as api_signature; |
| 8 import 'file_repository_test.dart' as file_repository; |
| 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; |
| 12 import 'uri_resolver_test.dart' as uri_resolver; |
| 13 |
| 14 /// Utility for manually running all tests. |
| 15 main() { |
| 16 defineReflectiveSuite(() { |
| 17 api_signature.main(); |
| 18 file_repository.main(); |
| 19 flat_buffers.main(); |
| 20 libraries_reader.main(); |
| 21 processed_options.main(); |
| 22 uri_resolver.main(); |
| 23 }, name: 'incremental'); |
| 24 } |
| OLD | NEW |