use of gov.ca.cwds.data.persistence.cms.Reporter in project API by ca-cwds.
the class ReporterDaoIT method testDelete.
@Override
@Test
public void testDelete() throws Exception {
String id = "AbiQCgu0Hj";
Reporter deleted = reporterDao.delete(id);
assertThat(deleted.getReferralId(), is(id));
}
Aggregations