Package jp.co.ntt.oss.mapper.stub

Examples of jp.co.ntt.oss.mapper.stub.NclobStub


  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");
    }
View Full Code Here

TOP

Related Classes of jp.co.ntt.oss.mapper.stub.NclobStub

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.