dao.insert(record);
FieldsonlyExample example = new FieldsonlyExample();
example.createCriteria().andIntegerfieldGreaterThan(new Integer(5));
int rows = dao.deleteByExample(example);
assertEquals(2, rows);
example = new FieldsonlyExample();
List answer = dao.selectByExample(example);
assertEquals(1, answer.size());