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