We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5f5485 commit 54997eaCopy full SHA for 54997ea
src/test/java/org/javawebstack/orm/test/ORMTestCase.java
@@ -16,6 +16,11 @@ public abstract class ORMTestCase {
16
String name = System.getenv("MYSQL_DATABASE");
17
String user = System.getenv("MYSQL_USERNAME");
18
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);
24
sql = new MySQL(
25
host != null ? host : "localhost",
26
port != null ? Integer.parseInt(port) : 3306,
0 commit comments