Beispiel #1
0
 /**
  * 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);
 }
Beispiel #2
0
 @Test
 @Ignore
 public void customerCreate() {
   Customer customer = new Customer();
   customer.setUsername("ibrahim");
   customer.setPassword("ibrahim_password");
   customer.setEmail("*****@*****.**");
   customerDAO.addCustomer(customer);
 }