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

Unified Diff: mojo/public/dart/third_party/shelf/test/test_all.dart

Issue 1346773002: Stop running pub get at gclient sync time and fix build bugs (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 3 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: mojo/public/dart/third_party/shelf/test/test_all.dart
diff --git a/mojo/public/dart/third_party/shelf/test/test_all.dart b/mojo/public/dart/third_party/shelf/test/test_all.dart
new file mode 100644
index 0000000000000000000000000000000000000000..64521d3af52613ee1e9d4fa1bd0c190ff28862f8
--- /dev/null
+++ b/mojo/public/dart/third_party/shelf/test/test_all.dart
@@ -0,0 +1,29 @@
+// 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.
+
+import 'package:test/test.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 | « mojo/public/dart/third_party/shelf/test/shelf_io_test.dart ('k') | mojo/public/dart/third_party/shelf/test/test_util.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698