Added MySQL functionality

This commit is contained in:
Riley Schneider
2025-12-18 10:01:58 +01:00
parent 3344ba67cc
commit 35e22bba99
12 changed files with 297 additions and 116 deletions

View File

@@ -1,6 +1,5 @@
package hhn.temp.project;
import hhn.temp.project.provider.DatabaseManager;
import hhn.temp.project.provider.SimpleDatabaseManager;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.DisplayName;
@@ -11,7 +10,6 @@ import static org.junit.jupiter.api.Assertions.*;
import java.io.IOException;
import java.net.URISyntaxException;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
@@ -87,6 +85,6 @@ public class DatabaseGoodCasesTest {
@Test
public void testRandom() throws IOException, URISyntaxException {
System.out.println(databaseManager.loadFile(SimpleDatabaseManager.QueryMode.INSERT));
System.out.println(databaseManager.loadFile(SimpleDatabaseManager.QueryMode.INSERT_TASK));
}
}