OLD | NEW |
(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 library shelf_static.test_all; |
| 6 |
| 7 import 'package:scheduled_test/scheduled_test.dart'; |
| 8 |
| 9 import 'alternative_root_test.dart' as alternative_root; |
| 10 import 'basic_file_test.dart' as basic_file; |
| 11 import 'default_document_test.dart' as default_document; |
| 12 import 'directory_listing_test.dart' as directory_listing; |
| 13 import 'get_handler_test.dart' as get_handler; |
| 14 import 'sample_test.dart' as sample; |
| 15 import 'symbolic_link_test.dart' as symbolic_link; |
| 16 |
| 17 void main() { |
| 18 group('alternative_root', alternative_root.main); |
| 19 group('basic_file', basic_file.main); |
| 20 group('default_document', default_document.main); |
| 21 group('directory_listing', directory_listing.main); |
| 22 group('get_handler', get_handler.main); |
| 23 group('sample', sample.main); |
| 24 group('symbolic_link', symbolic_link.main); |
| 25 } |
OLD | NEW |