OLD | NEW |
| (Empty) |
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 | |
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 'operation_queue_test.dart' as operation_queue_test; | |
8 import 'operation_test.dart' as operation_test; | |
9 | |
10 /** | |
11 * Utility for manually running all tests. | |
12 */ | |
13 main() { | |
14 defineReflectiveSuite(() { | |
15 operation_queue_test.main(); | |
16 operation_test.main(); | |
17 }, name: 'operation'); | |
18 } | |
OLD | NEW |