All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ssio.integrationtest.support.SsioITHelper Maven / Gradle / Ivy

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