Beispiel #1
0
 @Test
 public void testDeleteContact() throws Exception {
   Integer contactAdded = dao.addContact(contact);
   dao.deleteContactById("33");
 }
Beispiel #2
0
 @Test
 public void testAddContact() throws Exception {
   Integer contactAdded = dao.addContact(contact);
   assertTrue(contactAdded > 0);
 }