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

Side by Side 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: tweaks Created 5 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 unified diff | Download patch
« no previous file with comments | « pubspec.yaml ('k') | tool/travis.sh » ('j') | tool/travis.sh » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 import 'package:unittest/unittest.dart';
2
3 import 'cascade_test.dart' as cascade;
4 import 'create_middleware_test.dart' as create_middleware;
5 import 'hijack_test.dart' as hijack;
6 import 'log_middleware_test.dart' as log_middleware;
7 import 'message_change_test.dart' as message_change;
8 import 'message_test.dart' as message;
9 import 'pipeline_test.dart' as pipeline;
10 import 'request_test.dart' as request;
11 import 'response_test.dart' as response;
12 import 'shelf_io_test.dart' as shelf_io;
13
14 void main() {
15 group('cascade', cascade.main);
16 group('create_middleware', create_middleware.main);
17 group('hijack', hijack.main);
18 group('log_middleware', log_middleware.main);
19 group('message_change', message_change.main);
20 group('message', message.main);
21 group('pipeline', pipeline.main);
22 group('request', request.main);
23 group('response', response.main);
24 group('shelf_io', shelf_io.main);
25 }
OLDNEW
« no previous file with comments | « pubspec.yaml ('k') | tool/travis.sh » ('j') | tool/travis.sh » ('J')

Powered by Google App Engine
This is Rietveld 408576698