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

Unified Diff: pkg/shelf/test/harness_console.dart

Issue 219283008: pkg/shelf (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: cl nits Created 6 years, 9 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 | « pkg/shelf/test/create_middleware_test.dart ('k') | pkg/shelf/test/http_date_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/shelf/test/harness_console.dart
diff --git a/pkg/shelf/test/harness_console.dart b/pkg/shelf/test/harness_console.dart
new file mode 100644
index 0000000000000000000000000000000000000000..4b61b73b8d5f3c6ef5b1a2587dd3af3cbef7a89c
--- /dev/null
+++ b/pkg/shelf/test/harness_console.dart
@@ -0,0 +1,38 @@
+// Copyright (c) 2014, 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.
+
+/*
+ * This file imports all individual tests files and allows them to be run
+ * all at once.
+ *
+ * It also exposes `testCore` which is used by `hop_runner` to rust tests via
+ * Hop.
+ */
+library harness_console;
+
+import 'package:unittest/unittest.dart';
+
+import 'create_middleware_test.dart' as create_middleware;
+import 'http_date_test.dart' as http_date;
+import 'log_middleware_test.dart' as log_middleware;
+import 'media_type_test.dart' as media_type;
+import 'request_test.dart' as request;
+import 'response_test.dart' as response;
+import 'shelf_io_test.dart' as shelf_io;
+import 'stack_test.dart' as stack;
+import 'string_scanner_test.dart' as string_scanner;
+
+void main() {
+ groupSep = ' - ';
+
+ group('createMiddleware', create_middleware.main);
+ group('http_date', http_date.main);
+ group('logRequests', log_middleware.main);
+ group('MediaType', media_type.main);
+ group('Request', request.main);
+ group('Response', response.main);
+ group('shelf_io', shelf_io.main);
+ group('Stack', stack.main);
+ group('StringScanner', string_scanner.main);
+}
« no previous file with comments | « pkg/shelf/test/create_middleware_test.dart ('k') | pkg/shelf/test/http_date_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698