use of mbg.test.ib2j2.generated.conditional.dao.PkonlyDAO in project generator by mybatis.
the class AbstractFlatJava2Test method getPkonlyDAO.
protected PkonlyDAO getPkonlyDAO() {
PkonlyDAOImpl dao = new PkonlyDAOImpl();
dao.setSqlMapClient(getSqlMapClient());
return dao;
}
use of mbg.test.ib2j2.generated.conditional.dao.PkonlyDAO in project generator by mybatis.
the class ConditionalJava5Test method testPKOnlyDeleteByPrimaryKey.
@Test
public void testPKOnlyDeleteByPrimaryKey() {
PkonlyDAO dao = getPkonlyDAO();
try {
PkonlyKey key = new PkonlyKey();
key.setId(1);
key.setSeqNum(3);
dao.insert(key);
key = new PkonlyKey();
key.setId(5);
key.setSeqNum(6);
dao.insert(key);
PkonlyExample example = new PkonlyExample();
List<PkonlyKey> answer = dao.selectByExample(example);
assertEquals(2, answer.size());
key = new PkonlyKey();
key.setId(5);
key.setSeqNum(6);
int rows = dao.deleteByPrimaryKey(key);
assertEquals(1, rows);
answer = dao.selectByExample(example);
assertEquals(1, answer.size());
} catch (SQLException e) {
fail(e.getMessage());
}
}
use of mbg.test.ib2j2.generated.conditional.dao.PkonlyDAO in project generator by mybatis.
the class ConditionalJava5Test method testPKOnlySelectByExampleNoCriteria.
@Test
public void testPKOnlySelectByExampleNoCriteria() {
PkonlyDAO dao = getPkonlyDAO();
try {
PkonlyKey key = new PkonlyKey();
key.setId(1);
key.setSeqNum(3);
dao.insert(key);
key = new PkonlyKey();
key.setId(5);
key.setSeqNum(6);
dao.insert(key);
key = new PkonlyKey();
key.setId(7);
key.setSeqNum(8);
dao.insert(key);
PkonlyExample example = new PkonlyExample();
example.createCriteria();
List<PkonlyKey> answer = dao.selectByExample(example);
assertEquals(3, answer.size());
} catch (SQLException e) {
fail(e.getMessage());
}
}
Aggregations