OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 import 'dart:async'; | 5 import 'dart:async'; |
6 import 'package:mojo_apptest/apptest.dart'; | 6 import 'package:mojo_apptest/apptest.dart'; |
7 | 7 |
8 import 'src/connect_to_loader_apptests.dart' as connect_to_loader_apptests; | 8 import 'src/connect_to_loader_apptests.dart' as connect_to_loader_apptests; |
9 import 'src/echo_apptests.dart' as echo; | 9 import 'src/echo_apptests.dart' as echo; |
10 import 'src/file_apptests.dart' as file; | 10 import 'src/file_apptests.dart' as file; |
11 import 'src/pingpong_apptests.dart' as pingpong; | |
12 import 'src/io_http_apptests.dart' as io_http; | 11 import 'src/io_http_apptests.dart' as io_http; |
13 import 'src/io_internet_address_apptests.dart' as io_internet_address; | 12 import 'src/io_internet_address_apptests.dart' as io_internet_address; |
| 13 import 'src/pingpong_apptests.dart' as pingpong; |
| 14 import 'src/service_describer_apptests.dart' as service_describer; |
14 import 'src/uri_apptests.dart' as uri; | 15 import 'src/uri_apptests.dart' as uri; |
15 import 'src/versioning_apptests.dart' as versioning; | 16 import 'src/versioning_apptests.dart' as versioning; |
16 | 17 |
17 main(List args) { | 18 main(List args) { |
18 final tests = [ | 19 final tests = [ |
19 connect_to_loader_apptests.connectToLoaderApptests, | 20 connect_to_loader_apptests.connectToLoaderApptests, |
20 echo.echoApptests, | 21 echo.echoApptests, |
21 file.tests, | 22 file.tests, |
22 io_internet_address.tests, | 23 io_internet_address.tests, |
23 io_http.tests, | 24 io_http.tests, |
24 pingpong.pingpongApptests, | 25 pingpong.pingpongApptests, |
| 26 service_describer.tests, |
25 uri.tests, | 27 uri.tests, |
26 versioning.tests | 28 versioning.tests |
27 ]; | 29 ]; |
28 runAppTests(args[0], tests); | 30 runAppTests(args[0], tests); |
29 } | 31 } |
OLD | NEW |