| OLD | NEW |
| 1 // Copyright (c) 2011, 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.errorHandler = (error) { | 10 d.onError = (error) { |
| 11 errors += 1; | 11 errors += 1; |
| 12 }; | 12 }; |
| 13 d.doneHandler = (completed) { | 13 d.onDone = (completed) { |
| 14 Expect.equals(1, errors); | 14 Expect.equals(1, errors); |
| 15 Expect.isFalse(completed); | 15 Expect.isFalse(completed); |
| 16 }; | 16 }; |
| 17 Expect.equals(0, errors); | 17 Expect.equals(0, errors); |
| 18 d.list(recursive); | 18 d.list(recursive); |
| 19 } | 19 } |
| 20 | 20 |
| 21 static void testInvalidArguments() { | 21 static void testInvalidArguments() { |
| 22 Directory d = new Directory(12); | 22 Directory d = new Directory(12); |
| 23 Expect.isFalse(d.existsSync()); | 23 Expect.isFalse(d.existsSync()); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 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 } |
| OLD | NEW |