()
| 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(); |
nothing calls this directly
no test coverage detected