@Test
 public void test3findByappCustomerType() {
   try {
     java.util.List<AppCustomer> listofappCustomerType =
         appcustomerRepository.findByAppCustomerType(
             (java.lang.String) map.get("AppCustomerTypePrimaryKey"));
     if (listofappCustomerType.size() == 0) {
       org.junit.Assert.fail("Query did not return any records.");
     }
   } catch (com.athena.framework.server.exception.repository.SpartanPersistenceException e) {
     org.junit.Assert.fail(e.getMessage());
   } catch (Exception e) {
     org.junit.Assert.fail(e.getMessage());
   }
 }