| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 // Directory listing test that tests listSync on a missing directory. | 5 // Directory listing test that tests listSync on a missing directory. |
| 6 // | 6 // |
| 7 // TODO(7157): Merge this test into directory_test.dart testListNonExistent() | 7 // TODO(7157): Merge this test into directory_test.dart testListNonExistent() |
| 8 // when it no longer crashes on Windows, when issue 7157 is resolved. | 8 // when it no longer crashes on Windows, when issue 7157 is resolved. |
| 9 | 9 |
| 10 import "package:expect/expect.dart"; |
| 10 import "dart:io"; | 11 import "dart:io"; |
| 11 import "dart:isolate"; | 12 import "dart:isolate"; |
| 12 | 13 |
| 13 void testListNonExistent() { | 14 void testListNonExistent() { |
| 14 new Directory("").createTemp().then((d) { | 15 new Directory("").createTemp().then((d) { |
| 15 d.delete().then((ignore) { | 16 d.delete().then((ignore) { |
| 16 Expect.throws(() => d.listSync(), (e) => e is DirectoryIOException); | 17 Expect.throws(() => d.listSync(), (e) => e is DirectoryIOException); |
| 17 Expect.throws(() => d.listSync(recursive: true), | 18 Expect.throws(() => d.listSync(recursive: true), |
| 18 (e) => e is DirectoryIOException); | 19 (e) => e is DirectoryIOException); |
| 19 }); | 20 }); |
| (...skipping 18 matching lines...) Expand all Loading... |
| 38 Expect.throws(() => long.listSync(recursive: true), | 39 Expect.throws(() => long.listSync(recursive: true), |
| 39 (e) => e is DirectoryIOException); | 40 (e) => e is DirectoryIOException); |
| 40 }); | 41 }); |
| 41 }); | 42 }); |
| 42 } | 43 } |
| 43 | 44 |
| 44 void main() { | 45 void main() { |
| 45 testListNonExistent(); | 46 testListNonExistent(); |
| 46 testListTooLongName(); | 47 testListTooLongName(); |
| 47 } | 48 } |
| OLD | NEW |