org.ssio.integrationtest.support.SsioITHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ssio-ext-test-common Show documentation
Show all versions of ssio-ext-test-common Show documentation
Simple Spreadsheet I/O - ${project.name}
The newest version!
package org.ssio.integrationtest.support;
import java.io.File;
public class SsioITHelper {
public static File createSpreadsheetFile(String prefix, String fileExtension) {
File dir = new File(System.getProperty("java.io.tmpdir"), "/ssio-it-test");
dir.mkdirs();
String filename = prefix + "-" + System.nanoTime() + "." + fileExtension;
File file = new File(dir, filename);
System.out.println("File created: " + file.getAbsolutePath());
return file;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy