AwfulTable newRecord = new AwfulTable();
newRecord.setFirstFirstName("Alonzo");
AwfulTableExample example = new AwfulTableExample();
example.createCriteria().andEMailLike("fred2@%");
int rows = dao.updateByExampleSelective(newRecord, example);
assertEquals(1, rows);
List<AwfulTable> answer = dao.selectByExample(example);
assertEquals(1, answer.size());