Package se.inera.ifv.casebox.core.service

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

Related Classes of se.inera.ifv.casebox.core.service.AnswerService

Copyright © 2018 www.massapicom. 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.