First runnable tests for Database / Commented out Good/BadCasesTests (not relevant to this branch)

This commit is contained in:
Riley Schneider
2025-12-03 18:19:48 +01:00
parent 8c4849fdf0
commit 04f2087456
6 changed files with 111 additions and 5 deletions

View File

@@ -1,5 +1,7 @@
package hhn.temp.project.provider;
import java.sql.SQLException;
public interface Database {
public boolean connect();
public void connect() throws SQLException;
}