use of mbg.test.mb3.generated.hierarchical.immutable.model.PkonlyKey in project generator by mybatis.
the class ConditionalJava5Test method testPKOnlyDeleteByPrimaryKey.
@Test
public void testPKOnlyDeleteByPrimaryKey() {
SqlSession sqlSession = sqlSessionFactory.openSession();
try {
PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
PkonlyKey key = new PkonlyKey();
key.setId(1);
key.setSeqNum(3);
mapper.insert(key);
key = new PkonlyKey();
key.setId(5);
key.setSeqNum(6);
mapper.insert(key);
PkonlyExample example = new PkonlyExample();
List<PkonlyKey> answer = mapper.selectByExample(example);
assertEquals(2, answer.size());
key = new PkonlyKey();
key.setId(5);
key.setSeqNum(6);
int rows = mapper.deleteByPrimaryKey(key);
assertEquals(1, rows);
answer = mapper.selectByExample(example);
assertEquals(1, answer.size());
} finally {
sqlSession.close();
}
}
use of mbg.test.mb3.generated.hierarchical.immutable.model.PkonlyKey in project generator by mybatis.
the class ConditionalJava5Test method testPKOnlyInsert.
@Test
public void testPKOnlyInsert() {
SqlSession sqlSession = sqlSessionFactory.openSession();
try {
PkonlyMapper mapper = sqlSession.getMapper(PkonlyMapper.class);
PkonlyKey key = new PkonlyKey();
key.setId(1);
key.setSeqNum(3);
mapper.insert(key);
PkonlyExample example = new PkonlyExample();
List<PkonlyKey> answer = mapper.selectByExample(example);
assertEquals(1, answer.size());
PkonlyKey returnedRecord = answer.get(0);
assertEquals(key.getId(), returnedRecord.getId());
assertEquals(key.getSeqNum(), returnedRecord.getSeqNum());
} finally {
sqlSession.close();
}
}
Aggregations