コード例 #1
0
 /** @see {@link CohortService#purgeCohort(Cohort)} */
 @Test
 @Verifies(value = "should delete cohort from database", method = "purgeCohort(Cohort)")
 public void purgeCohort_shouldDeleteCohortFromDatabase() throws Exception {
   executeDataSet(COHORT_XML);
   List<Cohort> allCohorts = service.getAllCohorts(true);
   assertEquals(2, allCohorts.size());
   service.purgeCohort(allCohorts.get(0));
   allCohorts = service.getAllCohorts(true);
   assertEquals(1, allCohorts.size());
 }