public void testSaveableWithoutLastName() throws Exception {
   setSaveable();
   person.setLastName(null);
   assertFalse(person.isSavable());
 }
 public void testSaveableWhenSaveable() throws Exception {
   setSaveable();
   assertTrue(person.isSavable());
 }