Index: test/test_all.dart |
diff --git a/test/test_all.dart b/test/test_all.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..663ce388b19168cbb0217639cc02ce003ba76ad3 |
--- /dev/null |
+++ b/test/test_all.dart |
@@ -0,0 +1,17 @@ |
+// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
+// 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. |
+ |
+library isolate.test.test_all; |
+ |
+import 'package:unittest/unittest.dart'; |
+ |
+import 'isolaterunner_test.dart' as isolaterunner; |
+import 'ports_test.dart' as ports; |
+import 'registry_test.dart' as registy; |
+ |
+void main() { |
+ group('IsolateRunner', isolaterunner.main); |
+ group('ports', ports.main); |
+ group('registry', registy.main); |
+} |