aboutsummaryrefslogtreecommitdiffstats
path: root/util/testsrc
diff options
context:
space:
mode:
Diffstat (limited to 'util/testsrc')
-rw-r--r--util/testsrc/org/aspectj/util/FileUtilTest.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/util/testsrc/org/aspectj/util/FileUtilTest.java b/util/testsrc/org/aspectj/util/FileUtilTest.java
index 23ac0e31f..1879abef7 100644
--- a/util/testsrc/org/aspectj/util/FileUtilTest.java
+++ b/util/testsrc/org/aspectj/util/FileUtilTest.java
@@ -706,5 +706,10 @@ public class FileUtilTest extends TestCase {
assertTrue("written: " + pipe.totalWritten(), false);
}
}
+
+ public void testCreateEmptySandbox () {
+ File sandbox = FileUtil.createEmptySandbox();
+ assertTrue("Sandbox does not exist",sandbox.exists());
+ }
}