Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(329)

Unified Diff: test/all.dart

Issue 1149563010: Add new features to package:async. (Closed) Base URL: https://github.com/dart-lang/async@master
Patch Set: Add all.dart to test. Apparently people like that. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
+}

Powered by Google App Engine
This is Rietveld 408576698