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

Side by Side 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 unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698