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

org.beanmodelgraph.testcommon.support.BmgITHelper Maven / Gradle / Ivy

The newest version!
package org.beanmodelgraph.testcommon.support;

import java.io.File;

public class BmgITHelper {
    private BmgITHelper() {
    }

    public static File createResultFile(String prefix, String fileExtension) {
        File dir = new File(System.getProperty("java.io.tmpdir"), "/bmg-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 - 2024 Weber Informatics LLC | Privacy Policy