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

Side by Side Diff: tests/standalone/src/io/DirectoryInvalidArgumentsTest.dart

Issue 9572005: Move all tests using dart:io to a separate directory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments Created 8 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 #import("dart:io"); 5 #import("dart:io");
6 6
7 class DirectoryInvalidArgumentsTest { 7 class DirectoryInvalidArgumentsTest {
8 static void testFailingList(Directory d, var recursive) { 8 static void testFailingList(Directory d, var recursive) {
9 int errors = 0; 9 int errors = 0;
10 d.onError = (error) { 10 d.onError = (error) {
(...skipping 28 matching lines...) Expand all
39 } 39 }
40 40
41 static void testMain() { 41 static void testMain() {
42 testInvalidArguments(); 42 testInvalidArguments();
43 } 43 }
44 } 44 }
45 45
46 main() { 46 main() {
47 DirectoryInvalidArgumentsTest.testMain(); 47 DirectoryInvalidArgumentsTest.testMain();
48 } 48 }
OLDNEW
« no previous file with comments | « tests/standalone/src/io/DartStdIOPipeTest.sh ('k') | tests/standalone/src/io/DirectoryTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698