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