()
| 155 | } |
| 156 | |
| 157 | public void testMoveNext() { |
| 158 | byte[] key = new byte[10]; |
| 159 | byte[] record = new byte[10]; |
| 160 | try { |
| 161 | Cursor c = new Cursor(m_db); |
| 162 | m_db.insert(key, record); |
| 163 | c.moveNext(); |
| 164 | } |
| 165 | catch (DatabaseException err) { |
| 166 | fail("DatabaseException "+err.getMessage()); |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | public void testMovePrevious() { |
| 171 | byte[] key = new byte[10]; |
nothing calls this directly
no test coverage detected