limbo/bindings/java/src/test/java/tech/turso/TestUtils.java
2025-07-03 10:56:05 -03:00

11 lines
307 B
Java

package tech.turso;
import java.io.IOException;
import java.nio.file.Files;
public class TestUtils {
/** Create temporary file and returns the path. */
public static String createTempFile() throws IOException {
return Files.createTempFile("turso_test_db", null).toAbsolutePath().toString();
}
}