()
| 80 | } |
| 81 | |
| 82 | public void testCloneCursor() { |
| 83 | Cursor c1, c2; |
| 84 | try { |
| 85 | c1 = new Cursor(m_db); |
| 86 | c2 = c1.cloneCursor(); |
| 87 | c1.close(); |
| 88 | c2.close(); |
| 89 | } |
| 90 | catch (DatabaseException err) { |
| 91 | fail("DatabaseException " + err.getMessage()); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | public void testMove() { |
| 96 | byte[] key = new byte[10]; |
nothing calls this directly
no test coverage detected