Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | |
|
nweiz
2015/06/18 23:44:27
Now that this is using the new test runner, this i
Lasse Reichstein Nielsen
2015/06/30 10:34:14
Cool. I thought it was some github testing thing t
| |
| 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/test.dart"; | |
| 6 | |
| 7 import "future_group_test.dart" as future_group; | |
| 8 import "result_test.dart" as result; | |
| 9 import "stream_completer_test.dart" as stream_completer; | |
| 10 import "stream_queue_test.dart" as stream_queue; | |
| 11 import "stream_zip_test.dart" as stream_zip; | |
| 12 import "stream_zip_zone_test.dart" as stream_zip_zone; | |
| 13 import "subscription_stream_test.dart" as subscription_stream; | |
| 14 | |
| 15 main() { | |
| 16 group("future_group:", future_group.main); | |
| 17 group("result:", result.main); | |
| 18 group("stream_completer:", stream_completer.main); | |
| 19 group("stream_queue:", stream_queue.main); | |
| 20 group("stream_zip:", stream_zip.main); | |
| 21 group("stream_zip_zone:", stream_zip_zone.main); | |
| 22 group("subscription_stream:", subscription_stream.main); | |
| 23 } | |
| OLD | NEW |