@Test
  public void testDelete() throws Exception {

    Department p1 = new Department.Builder(0201).name("D-O-D").build();
    Department returnDepartment = crudService.remove(p1);
    when(crudService.remove(p1)).thenReturn(returnDepartment);
    Mockito.verify(crudService).remove(p1);
  }