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

Unified Diff: runtime/tests/dart/src/DirectoryTest.dart

Issue 8222006: Add simple directory listing test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/tests/dart/src/DirectoryTest.dart
diff --git a/runtime/tests/dart/src/DirectoryTest.dart b/runtime/tests/dart/src/DirectoryTest.dart
new file mode 100644
index 0000000000000000000000000000000000000000..3215f9dd9af0f02837c7cee4ce7362ba168ce354
--- /dev/null
+++ b/runtime/tests/dart/src/DirectoryTest.dart
@@ -0,0 +1,40 @@
+// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+//
+// Directory listing test.
+
+class DirectoryTest {
+ static void testListing() {
+ bool listedSomething = false;
+ Directory directory = new Directory.open(".");
+
+ directory.setDirHandler((dir) {
+ listedSomething = true;
+ });
+
+ directory.setFileHandler((f) {
+ listedSomething = true;
+ });
+
+ directory.setDoneHandler((completed) {
Søren Gjesse 2011/10/10 14:58:00 Perhaps format like directory.setDoneHandler(
Mads Ager (google) 2011/10/10 15:07:37 I like the current style better. I find the indent
+ Expect.isTrue(completed, "directory listing did not complete");
+ Expect.isTrue(listedSomething, "empty directory");
+ directory.close();
+ });
+
+ directory.setDirErrorHandler((dir) {
+ Expect.fail("error listing directory");
+ });
+
+ directory.list();
+ }
+
+ static void testMain() {
+ testListing();
+ }
+}
+
+main() {
+ DirectoryTest.testMain();
+}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698