mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-07-07 20:45:01 +00:00
11 lines
307 B
Java
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();
|
|
}
|
|
}
|