Index: test/all.dart |
diff --git a/test/all.dart b/test/all.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a58dffb9223844f26984908eaba7bf0f511a4422 |
--- /dev/null |
+++ b/test/all.dart |
@@ -0,0 +1,23 @@ |
+// 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
|
+// for details. All rights reserved. Use of this source code is governed by a |
+// BSD-style license that can be found in the LICENSE file. |
+ |
+import "package:test/test.dart"; |
+ |
+import "future_group_test.dart" as future_group; |
+import "result_test.dart" as result; |
+import "stream_completer_test.dart" as stream_completer; |
+import "stream_queue_test.dart" as stream_queue; |
+import "stream_zip_test.dart" as stream_zip; |
+import "stream_zip_zone_test.dart" as stream_zip_zone; |
+import "subscription_stream_test.dart" as subscription_stream; |
+ |
+main() { |
+ group("future_group:", future_group.main); |
+ group("result:", result.main); |
+ group("stream_completer:", stream_completer.main); |
+ group("stream_queue:", stream_queue.main); |
+ group("stream_zip:", stream_zip.main); |
+ group("stream_zip_zone:", stream_zip_zone.main); |
+ group("subscription_stream:", subscription_stream.main); |
+} |