use of gov.ca.cwds.data.persistence.ns.Address in project API by ca-cwds.
the class AddressDaoIT method testDelete.
@Override
@Test
public void testDelete() {
long id = 1;
Address deleted = addressDao.delete(id);
assertThat(deleted.getId(), is(id));
}
Aggregations