public final void testSetObject() {
PreparedStatementStub pstmt = new PreparedStatementStub();
RowIdDataMapper dm = new RowIdDataMapper();
assertNotNull(dm);
try {
dm.setObject(pstmt, 123, new RowIdStub());
assertEquals("setRowId(123, jp.co.ntt.oss.mapper.stub.RowIdStub)", pstmt
.getCalled());
} catch (SQLException e) {
fail("exception thrown");
}