Skip to content

Commit b23284c

Browse files
committed
test
1 parent 1001405 commit b23284c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ojdbc-provider-common/src/test/java/oracle/jdbc/provider/TestProperties.java

+2
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,8 @@ public static String getOrAbort(Enum<?> enumValue) {
144144
*/
145145
public static String getOrAbort(String name) {
146146
String value = getProperties().getProperty(name);
147+
if (value == null)
148+
System.out.println(name + " is null");
147149
Assumptions.assumeTrue(
148150
value != null,
149151
format("No value configured for \"%s\" in \"%s\"", name, FILE_PATH));

0 commit comments

Comments
 (0)