Ejemplo n.º 1
0
 public void testSaveableWithoutLastName() throws Exception {
   setSaveable();
   person.setLastName(null);
   assertFalse(person.isSavable());
 }
Ejemplo n.º 2
0
 public void testSaveableWhenSaveable() throws Exception {
   setSaveable();
   assertTrue(person.isSavable());
 }