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