diff options
author | Lars Langhans <lla@openoffice.org> | 2010-06-18 10:09:47 +0200 |
---|---|---|
committer | Lars Langhans <lla@openoffice.org> | 2010-06-18 10:09:47 +0200 |
commit | a0203934ea082dcd6a6b46151841aeb728069bf2 (patch) | |
tree | 0b35874835390f536261f940b5da7af5d6a297c7 /qadevOOo/qa | |
parent | 2f7791ebd03a902a10d11ad21867f8434cbffcb3 (diff) |
sb123:#i111449# cleanups in qadevOOo qa/complex tests
Diffstat (limited to 'qadevOOo/qa')
-rw-r--r-- | qadevOOo/qa/complex/junitskeleton/Skeleton.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qadevOOo/qa/complex/junitskeleton/Skeleton.java b/qadevOOo/qa/complex/junitskeleton/Skeleton.java index 3438e00de..6b8a0c069 100644 --- a/qadevOOo/qa/complex/junitskeleton/Skeleton.java +++ b/qadevOOo/qa/complex/junitskeleton/Skeleton.java @@ -60,6 +60,10 @@ public class Skeleton assertTrue("Couldn't open document", open()); System.out.println("check"); assertTrue("Couldn't close document", close()); + String tempDirURL = util.utils.getOfficeTemp/*Dir*/(getMSF()); + System.out.println("temp dir URL is: " + tempDirURL); + String tempDir = graphical.FileHelper.getSystemPathFromFileURL(tempDirURL); + assertTrue("Temp directory doesn't exist.", new File(tempDir).exists()); } private boolean open() |