/** * This method tests a duplicate entry and is expected to throw Springs * DataIntegrityViolationException */ @Test(expected = DataIntegrityViolationException.class) @Ignore public void duplicateEntry() { Customer customer = new Customer(); customer.setUsername("ameer"); customer.setPassword("ameer_password"); customer.setEmail("*****@*****.**"); customerDAO.addCustomer(customer); }
@Test @Ignore public void customerCreate() { Customer customer = new Customer(); customer.setUsername("ibrahim"); customer.setPassword("ibrahim_password"); customer.setEmail("*****@*****.**"); customerDAO.addCustomer(customer); }