Skip to content

Commit 84cbf14

Browse files
Tests: print JVM vendor
1 parent b2b419b commit 84cbf14

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/objectbox-java-test/src/test/java/io/objectbox/AbstractObjectBoxTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,12 @@ public void setUp() throws IOException {
9999
if (!printedVersionsOnce) {
100100
printedVersionsOnce = true;
101101
printProcessId();
102-
System.out.println("ObjectBox Java version: " + BoxStore.getVersion());
103-
System.out.println("ObjectBox Core version: " + BoxStore.getVersionNative());
102+
System.out.println("ObjectBox Java SDK version: " + BoxStore.getVersion());
103+
System.out.println("ObjectBox Database version: " + BoxStore.getVersionNative());
104104
System.out.println("First DB dir: " + boxStoreDir);
105105
System.out.println("IN_MEMORY=" + IN_MEMORY);
106106
System.out.println("java.version=" + System.getProperty("java.version"));
107+
System.out.println("java.vendor=" + System.getProperty("java.vendor"));
107108
System.out.println("file.encoding=" + System.getProperty("file.encoding"));
108109
System.out.println("sun.jnu.encoding=" + System.getProperty("sun.jnu.encoding"));
109110
}

0 commit comments

Comments
 (0)