Skip to content

Commit 54997ea

Browse files
committed
Tried to add testing
1 parent a5f5485 commit 54997ea

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/test/java/org/javawebstack/orm/test/ORMTestCase.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ public abstract class ORMTestCase {
1616
String name = System.getenv("MYSQL_DATABASE");
1717
String user = System.getenv("MYSQL_USERNAME");
1818
String password = System.getenv("MYSQL_PASSWORD");
19+
System.out.println(host);
20+
System.out.println(port);
21+
System.out.println(name);
22+
System.out.println(user);
23+
System.out.println(password);
1924
sql = new MySQL(
2025
host != null ? host : "localhost",
2126
port != null ? Integer.parseInt(port) : 3306,

0 commit comments

Comments
 (0)