FileDocCategorySizeDatePackage
TestTempFile.javaAPI DocApache Poi 3.0.11624Mon Jan 01 12:39:46 GMT 2007org.apache.poi.util

TestTempFile

public class TestTempFile extends TestCase
author
Glen Stampoultzis

Fields Summary
TempFile
tempFile
Constructors Summary
Methods Summary
public voidtestCreateTempFile()

        File tempFile = TempFile.createTempFile("test", ".txt");
        FileWriter w = new FileWriter(tempFile);
        w.write("testing");
        w.close();
        assertTrue(tempFile.exists());
        assertEquals("poifiles", tempFile.getParentFile().getName());

        // Can't think of a good way to check whether a file is actually deleted since it would require the VM to stop.