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: test/test_all.dart

Issue 1583693002: Get rid of all the library tags. (Closed) Base URL: git@github.com:dart-lang/shelf_static@master
Patch Set: Created 4 years, 11 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 | « test/symbolic_link_test.dart ('k') | test/test_util.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library shelf_static.test_all;
6
7 import 'package:scheduled_test/scheduled_test.dart'; 5 import 'package:scheduled_test/scheduled_test.dart';
8 6
9 import 'alternative_root_test.dart' as alternative_root; 7 import 'alternative_root_test.dart' as alternative_root;
10 import 'basic_file_test.dart' as basic_file; 8 import 'basic_file_test.dart' as basic_file;
11 import 'default_document_test.dart' as default_document; 9 import 'default_document_test.dart' as default_document;
12 import 'directory_listing_test.dart' as directory_listing; 10 import 'directory_listing_test.dart' as directory_listing;
13 import 'get_handler_test.dart' as get_handler; 11 import 'get_handler_test.dart' as get_handler;
14 import 'sample_test.dart' as sample; 12 import 'sample_test.dart' as sample;
15 import 'symbolic_link_test.dart' as symbolic_link; 13 import 'symbolic_link_test.dart' as symbolic_link;
16 14
17 void main() { 15 void main() {
18 group('alternative_root', alternative_root.main); 16 group('alternative_root', alternative_root.main);
19 group('basic_file', basic_file.main); 17 group('basic_file', basic_file.main);
20 group('default_document', default_document.main); 18 group('default_document', default_document.main);
21 group('directory_listing', directory_listing.main); 19 group('directory_listing', directory_listing.main);
22 group('get_handler', get_handler.main); 20 group('get_handler', get_handler.main);
23 group('sample', sample.main); 21 group('sample', sample.main);
24 group('symbolic_link', symbolic_link.main); 22 group('symbolic_link', symbolic_link.main);
25 } 23 }
OLDNEW
« no previous file with comments | « test/symbolic_link_test.dart ('k') | test/test_util.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698