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