Hotfix to address the IOException in the SimpleDatabaseManager class, modified modifier and deleted useless test.

This commit is contained in:
Riley Schneider
2026-01-06 23:36:29 +01:00
parent e667389694
commit 3050405792
8 changed files with 15 additions and 26 deletions

View File

@@ -7,8 +7,6 @@ import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
import java.io.IOException;
import java.net.URISyntaxException;
import java.sql.SQLException;
import java.util.Collection;
import java.util.List;
@@ -82,9 +80,4 @@ public class DatabaseGoodCasesTest {
assertEquals(0, databaseManager.getTotalNumberOfTasks());
assertEquals(0, databaseManager.getTotalNumberOfWorkers());
}
@Test
public void testRandom() throws IOException, URISyntaxException {
System.out.println(databaseManager.loadFile(SimpleDatabaseManager.QueryMode.INSERT_TASK));
}
}