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

Side by Side Diff: services/dart/dart_apptests/lib/main.dart

Issue 1539843004: Support some file operations in dart:io under mojo (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years 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
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/pingpong_apptests.dart' as pingpong; 11 import 'src/pingpong_apptests.dart' as pingpong;
11 import 'src/io_http_apptests.dart' as io_http; 12 import 'src/io_http_apptests.dart' as io_http;
12 import 'src/io_internet_address_apptests.dart' as io_internet_address; 13 import 'src/io_internet_address_apptests.dart' as io_internet_address;
13 import 'src/versioning_apptests.dart' as versioning; 14 import 'src/versioning_apptests.dart' as versioning;
14 15
15 main(List args) { 16 main(List args) {
16 final tests = [ 17 final tests = [
17 connect_to_loader_apptests.connectToLoaderApptests, 18 connect_to_loader_apptests.connectToLoaderApptests,
18 echo.echoApptests, 19 echo.echoApptests,
20 file.tests,
19 io_internet_address.tests, 21 io_internet_address.tests,
20 io_http.tests, 22 io_http.tests,
21 pingpong.pingpongApptests, 23 pingpong.pingpongApptests,
22 versioning.tests 24 versioning.tests
23 ]; 25 ];
24 runAppTests(args[0], tests); 26 runAppTests(args[0], tests);
25 } 27 }
OLDNEW
« no previous file with comments | « services/dart/dart_apptests/BUILD.gn ('k') | services/dart/dart_apptests/lib/src/file_apptests.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698