Examples of AnswerService


Examples of se.inera.ifv.casebox.core.service.AnswerService

    @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);
       
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.