@Test
public void testDeleteAnswers() throws Exception {
Capture<String> careUnit = new Capture<String>();
Capture<Set<Long>> ids = new Capture<Set<Long>>();
AnswerService answerService = createMock(AnswerService.class);
answerService.deleteAnswersForCareUnit(capture(careUnit), capture(ids));
expectLastCall();
DeleteAnswersImpl impl = new DeleteAnswersImpl();
impl.setAnswerService(answerService);