()
| 142 | } |
| 143 | |
| 144 | public void testMoveLast() { |
| 145 | byte[] key = new byte[10]; |
| 146 | byte[] record = new byte[10]; |
| 147 | try { |
| 148 | Cursor c = new Cursor(m_db); |
| 149 | m_db.insert(key, record); |
| 150 | c.moveLast(); |
| 151 | } |
| 152 | catch (DatabaseException err) { |
| 153 | fail("DatabaseException "+err.getMessage()); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | public void testMoveNext() { |
| 158 | byte[] key = new byte[10]; |
nothing calls this directly
no test coverage detected