public void setStrengthDao(StrengthDao dao) {
this.dao = dao;
}
public void testAddStrength() throws Exception {
Strength strength = new Strength();
// set required fields
dao.saveStrength(strength);
// verify a primary key was assigned
assertNotNull(strength.getPointId());
// verify set fields are same after save
}