fixed shutdown sequence, added better modularity

This commit is contained in:
Amer Agovic
2024-01-15 10:45:40 -06:00
parent 32cf0ecd66
commit 01d49e1ee9
40 changed files with 1464 additions and 386 deletions
@@ -60,7 +60,7 @@ public class TerminalTest {
@BeforeClass
public static void beforeAllTestMethods() {
System.out.println("Invoked once before all test methods");
String url="jdbc:postgresql://postgres:Ramudin99@bigbang:5432/Test";
String url=System.getenv("DB_URL");
t=new SQLTerminal(url);
}