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