| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 import 'dart:async'; | |
| 6 import 'package:mojo_apptest/apptest.dart'; | |
| 7 | |
| 8 import 'src/connect_to_loader_apptests.dart' as connect_to_loader_apptests; | |
| 9 import 'src/echo_apptests.dart' as echo; | |
| 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; | |
| 13 import 'src/io_internet_address_apptests.dart' as io_internet_address; | |
| 14 import 'src/versioning_apptests.dart' as versioning; | |
| 15 | |
| 16 main(List args) { | |
| 17 final tests = [ | |
| 18 connect_to_loader_apptests.connectToLoaderApptests, | |
| 19 echo.echoApptests, | |
| 20 file.tests, | |
| 21 io_internet_address.tests, | |
| 22 io_http.tests, | |
| 23 pingpong.pingpongApptests, | |
| 24 versioning.tests | |
| 25 ]; | |
| 26 runAppTests(args[0], tests); | |
| 27 } | |
| OLD | NEW |