We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67a9983 commit 764aa1bCopy full SHA for 764aa1b
1 file changed
androidTest/src/androidTest/java/source/defra/DefraInstrumentedTest.java
@@ -11,7 +11,11 @@ public class DefraInstrumentedTest {
11
public void createAndCloseNode() throws DefraException {
12
DefraNodeInitOptions options = new DefraNodeInitOptions();
13
options.inMemory = true;
14
+ System.out.println("Creating DefraNode...");
15
DefraNode node = new DefraNode(options);
16
+ System.out.println("DefraNode created successfully.");
17
node.close();
18
+ System.out.println("DefraNode closed successfully.");
19
+ System.out.println("Test passed.");
20
}
21
0 commit comments