use of mbg.test.ib2j2.generated.hierarchical.model.PkonlyExample in project generator by mybatis.
the class DeleteByPrimaryKeyTest method testPKOnlyDeleteByPrimaryKey.
public void testPKOnlyDeleteByPrimaryKey() {
PkonlyDAO dao = getPkonlyDAO();
try {
PkonlyKey key = new PkonlyKey();
key.setId(new Integer(1));
key.setSeqNum(new Integer(3));
dao.insert(key);
key = new PkonlyKey();
key.setId(new Integer(5));
key.setSeqNum(new Integer(6));
dao.insert(key);
PkonlyExample example = new PkonlyExample();
List answer = dao.selectByExample(example);
assertEquals(2, answer.size());
key = new PkonlyKey();
key.setId(new Integer(5));
key.setSeqNum(new Integer(6));
int rows = dao.deleteByPrimaryKey(key);
assertEquals(1, rows);
answer = dao.selectByExample(example);
assertEquals(1, answer.size());
} catch (Exception e) {
fail(e.getMessage());
}
}
use of mbg.test.ib2j2.generated.hierarchical.model.PkonlyExample in project generator by mybatis.
the class CountByExampleTest method testPKOnlyCountByExample.
public void testPKOnlyCountByExample() {
PkonlyDAO dao = getPkonlyDAO();
try {
PkonlyKey key = new PkonlyKey();
key.setId(new Integer(1));
key.setSeqNum(new Integer(3));
dao.insert(key);
key = new PkonlyKey();
key.setId(new Integer(5));
key.setSeqNum(new Integer(6));
dao.insert(key);
key = new PkonlyKey();
key.setId(new Integer(7));
key.setSeqNum(new Integer(8));
dao.insert(key);
PkonlyExample example = new PkonlyExample();
example.createCriteria().andIdGreaterThan(new Integer(4));
long rows = dao.countByExample(example);
assertEquals(2, rows);
example.clear();
rows = dao.countByExample(example);
assertEquals(3, rows);
} catch (Exception e) {
fail(e.getMessage());
}
}
use of mbg.test.ib2j2.generated.hierarchical.model.PkonlyExample in project generator by mybatis.
the class SelectByExampleTest method testPKOnlySelectByExample.
public void testPKOnlySelectByExample() {
PkonlyDAO dao = getPkonlyDAO();
try {
PkonlyKey key = new PkonlyKey();
key.setId(new Integer(1));
key.setSeqNum(new Integer(3));
dao.insert(key);
key = new PkonlyKey();
key.setId(new Integer(5));
key.setSeqNum(new Integer(6));
dao.insert(key);
key = new PkonlyKey();
key.setId(new Integer(7));
key.setSeqNum(new Integer(8));
dao.insert(key);
PkonlyExample example = new PkonlyExample();
example.createCriteria().andIdGreaterThan(new Integer(4));
List answer = dao.selectByExample(example);
assertEquals(2, answer.size());
} catch (Exception e) {
fail(e.getMessage());
}
}
use of mbg.test.ib2j2.generated.hierarchical.model.PkonlyExample in project generator by mybatis.
the class FlatJava2Test method testPKOnlySelectByExample.
public void testPKOnlySelectByExample() {
PkonlyDAO dao = getPkonlyDAO();
try {
Pkonly key = new Pkonly();
key.setId(new Integer(1));
key.setSeqNum(new Integer(3));
dao.insert(key);
key = new Pkonly();
key.setId(new Integer(5));
key.setSeqNum(new Integer(6));
dao.insert(key);
key = new Pkonly();
key.setId(new Integer(7));
key.setSeqNum(new Integer(8));
dao.insert(key);
PkonlyExample example = new PkonlyExample();
example.createCriteria().andIdGreaterThan(new Integer(4));
List answer = dao.selectByExample(example);
assertEquals(2, answer.size());
} catch (SQLException e) {
fail(e.getMessage());
}
}
use of mbg.test.ib2j2.generated.hierarchical.model.PkonlyExample in project generator by mybatis.
the class FlatJava2Test method testPKOnlyInsert.
public void testPKOnlyInsert() {
PkonlyDAO dao = getPkonlyDAO();
try {
Pkonly key = new Pkonly();
key.setId(new Integer(1));
key.setSeqNum(new Integer(3));
dao.insert(key);
PkonlyExample example = new PkonlyExample();
List answer = dao.selectByExample(example);
assertEquals(1, answer.size());
Pkonly returnedRecord = (Pkonly) answer.get(0);
assertEquals(key.getId(), returnedRecord.getId());
assertEquals(key.getSeqNum(), returnedRecord.getSeqNum());
} catch (SQLException e) {
fail(e.getMessage());
}
}
Aggregations