// Test that it is possible to move beforeFirst from insertRow
currentPosition = rs.getRow();
rs.moveToInsertRow();
rs.updateInt(1, currentPosition + 1000);
rs.beforeFirst();
assertTrue("isBeforeFirst() should return true", rs.isBeforeFirst());
rs.next();
assertEquals("CurrentPosition should be 1", rs.getRow(), 1);
assertTrue("isFirst() should return true", rs.isFirst());