()
| 168 | } |
| 169 | |
| 170 | public void testMovePrevious() { |
| 171 | byte[] key = new byte[10]; |
| 172 | byte[] record = new byte[10]; |
| 173 | try { |
| 174 | Cursor c = new Cursor(m_db); |
| 175 | m_db.insert(key, record); |
| 176 | c.movePrevious(); |
| 177 | } |
| 178 | catch (DatabaseException err) { |
| 179 | fail("DatabaseException "+err.getMessage()); |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | public void assertByteArrayEquals(byte[] r1, byte[] r2) { |
| 184 | assertEquals(r1.length, r2.length); |
nothing calls this directly
no test coverage detected