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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2015, 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 import 'package:test/test.dart';
6
7 import 'cascade_test.dart' as cascade;
8 import 'create_middleware_test.dart' as create_middleware;
9 import 'hijack_test.dart' as hijack;
10 import 'log_middleware_test.dart' as log_middleware;
11 import 'message_change_test.dart' as message_change;
12 import 'message_test.dart' as message;
13 import 'pipeline_test.dart' as pipeline;
14 import 'request_test.dart' as request;
15 import 'response_test.dart' as response;
16 import 'shelf_io_test.dart' as shelf_io;
17
18 void main() {
19 group('cascade', cascade.main);
20 group('create_middleware', create_middleware.main);
21 group('hijack', hijack.main);
22 group('log_middleware', log_middleware.main);
23 group('message_change', message_change.main);
24 group('message', message.main);
25 group('pipeline', pipeline.main);
26 group('request', request.main);
27 group('response', response.main);
28 group('shelf_io', shelf_io.main);
29 }
OLDNEW
« 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