()
| 129 | } |
| 130 | |
| 131 | public void testMoveFirst() { |
| 132 | byte[] key = new byte[10]; |
| 133 | byte[] record = new byte[10]; |
| 134 | try { |
| 135 | Cursor c = new Cursor(m_db); |
| 136 | m_db.insert(key, record); |
| 137 | c.moveFirst(); |
| 138 | } |
| 139 | catch (DatabaseException err) { |
| 140 | fail("DatabaseException "+err.getMessage()); |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | public void testMoveLast() { |
| 145 | byte[] key = new byte[10]; |
nothing calls this directly
no test coverage detected