161718192021222324252627
/** * run the test. */ @Test public void insertErrorTest() { Animal animal = new Animal(); animal.setName("Lion"); animal.setRace("I know no"); animal.setCountry("Brazil"); Assert.assertTrue(dao.insert(animal)); }
28293031323334353637
/** * run the test. */ @Test(expected = KeyProblemsException.class) public void insertNullError() { Animal animal = new Animal(); animal.setRace("I know no"); animal.setCountry("Brazil"); Assert.assertFalse(dao.insert(animal)); }