diff options
author | mwebster <mwebster> | 2006-06-15 10:44:04 +0000 |
---|---|---|
committer | mwebster <mwebster> | 2006-06-15 10:44:04 +0000 |
commit | f4cd0bfb01911ae5f8aaf4a114fac0b921806f50 (patch) | |
tree | c45056525294f586ad537eea4d63526a36d29c6d /util/testsrc | |
parent | b28c0d22c0658239710c17315c30178202a33bc0 (diff) | |
download | aspectj-f4cd0bfb01911ae5f8aaf4a114fac0b921806f50.tar.gz aspectj-f4cd0bfb01911ae5f8aaf4a114fac0b921806f50.zip |
Make sandbox directories unique among workspaces e.g. c:\temp\ajcSandbox\org.aspectj\ajcTes1234.tmp
Diffstat (limited to 'util/testsrc')
-rw-r--r-- | util/testsrc/org/aspectj/util/FileUtilTest.java | 5 |
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()); + } } |