()
| 69 | } |
| 70 | |
| 71 | public void testCreate() { |
| 72 | Cursor c; |
| 73 | try { |
| 74 | c = new Cursor(m_db); |
| 75 | c.close(); |
| 76 | } |
| 77 | catch (DatabaseException err) { |
| 78 | fail("DatabaseException " + err.getMessage()); |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | public void testCloneCursor() { |
| 83 | Cursor c1, c2; |
nothing calls this directly
no test coverage detected