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

Unified Diff: test/test_all.dart

Issue 966353002: pkg/shelf: add travis and code coverage settings (Closed) Base URL: https://github.com/dart-lang/shelf.git@master
Patch Set: fix for install Created 5 years, 10 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
« no previous file with comments | « pubspec.yaml ('k') | tool/travis.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/test_all.dart
diff --git a/test/test_all.dart b/test/test_all.dart
new file mode 100644
index 0000000000000000000000000000000000000000..5a21edfea7d367f530b4bc915b9c326a6842edd0
--- /dev/null
+++ b/test/test_all.dart
@@ -0,0 +1,25 @@
+import 'package:unittest/unittest.dart';
+
+import 'cascade_test.dart' as cascade;
+import 'create_middleware_test.dart' as create_middleware;
+import 'hijack_test.dart' as hijack;
+import 'log_middleware_test.dart' as log_middleware;
+import 'message_change_test.dart' as message_change;
+import 'message_test.dart' as message;
+import 'pipeline_test.dart' as pipeline;
+import 'request_test.dart' as request;
+import 'response_test.dart' as response;
+import 'shelf_io_test.dart' as shelf_io;
+
+void main() {
+ group('cascade', cascade.main);
+ group('create_middleware', create_middleware.main);
+ group('hijack', hijack.main);
+ group('log_middleware', log_middleware.main);
+ group('message_change', message_change.main);
+ group('message', message.main);
+ group('pipeline', pipeline.main);
+ group('request', request.main);
+ group('response', response.main);
+ group('shelf_io', shelf_io.main);
+}
« no previous file with comments | « pubspec.yaml ('k') | tool/travis.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698