MCPcopy Create free account
hub / github.com/cruppstahl/upscaledb / testOpenString

Method testOpenString

java/unittests/EnvironmentTest.java:109–120  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

107 }
108
109 public void testOpenString() {
110 Environment env = new Environment();
111 try {
112 env.create("jtest.db");
113 env.close();
114 env.open("jtest.db");
115 }
116 catch (DatabaseException err) {
117 fail("Unexpected error " + err.getMessage());
118 }
119 env.close();
120 }
121
122 public void testOpenStringNegative() {
123 Environment env = new Environment();

Callers

nothing calls this directly

Calls 4

createMethod · 0.95
closeMethod · 0.95
openMethod · 0.95
getMessageMethod · 0.45

Tested by

no test coverage detected