blob: 68cbba49ee54b25bb73ccd3616f465d3f3e44606 [file] [log] [blame]
import java.io.FileOutputStream;
public class DefaultTest
{
public void testRun()
throws Exception
{
FileOutputStream fout = new FileOutputStream("target/defaultTestTouchFile.txt");
fout.write('!');
fout.flush();
fout.close();
}
}