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

fitnesse.testutil.CreateFileAndWaitFixture Maven / Gradle / Ivy

package fitnesse.testutil;

import java.io.File;
import java.io.IOException;

public class CreateFileAndWaitFixture {
  public CreateFileAndWaitFixture(String name) throws IOException, InterruptedException {
    File file = new File(name);
    file.createNewFile();
    Thread.sleep(2000);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy