use of com.lazerycode.ebselen.handlers.FileHandler in project Ebselen by Ardesco.
the class FileHandlerTest method checkThatNewlyCreatedFileCanBeWrittenTo.
@Test
public void checkThatNewlyCreatedFileCanBeWrittenTo() throws Exception {
String thisFilename = randomFilename();
FileHandler myFile = new FileHandler(thisFilename, true);
myFile.write("This file can be written to.");
myFile.close();
}
Aggregations