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

Side by Side 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, 8 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 | Annotate | Revision Log
« 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
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 /*
6 * This file imports all individual tests files and allows them to be run
7 * all at once.
8 *
9 * It also exposes `testCore` which is used by `hop_runner` to rust tests via
10 * Hop.
11 */
12 library harness_console;
13
14 import 'package:unittest/unittest.dart';
15
16 import 'create_middleware_test.dart' as create_middleware;
17 import 'http_date_test.dart' as http_date;
18 import 'log_middleware_test.dart' as log_middleware;
19 import 'media_type_test.dart' as media_type;
20 import 'request_test.dart' as request;
21 import 'response_test.dart' as response;
22 import 'shelf_io_test.dart' as shelf_io;
23 import 'stack_test.dart' as stack;
24 import 'string_scanner_test.dart' as string_scanner;
25
26 void main() {
27 groupSep = ' - ';
28
29 group('createMiddleware', create_middleware.main);
30 group('http_date', http_date.main);
31 group('logRequests', log_middleware.main);
32 group('MediaType', media_type.main);
33 group('Request', request.main);
34 group('Response', response.main);
35 group('shelf_io', shelf_io.main);
36 group('Stack', stack.main);
37 group('StringScanner', string_scanner.main);
38 }
OLDNEW
« 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