use of org.openmrs.module.paperrecord.db.PaperRecordDAO in project openmrs-module-mirebalais by PIH.
the class PaperRecordServiceIT method setUp.
@Before
public void setUp() {
paperRecordService = new PaperRecordServiceImpl();
patientService = mock(PatientService.class);
administrationService = mock(AdministrationService.class);
paperRecordProperties = mock(PaperRecordProperties.class);
paperRecordDAO = mock(PaperRecordDAO.class);
((PaperRecordServiceImpl) paperRecordService).setIdentifierSourceService(identifierSourceService);
((PaperRecordServiceImpl) paperRecordService).setPatientService(patientService);
((PaperRecordServiceImpl) paperRecordService).setPaperRecordProperties(paperRecordProperties);
((PaperRecordServiceImpl) paperRecordService).setPaperRecordDAO(paperRecordDAO);
// so we handle the hack in PaperRecordServiceImpl where internal methods are fetched via Context.getService
mockStatic(Context.class);
when(Context.getService(PaperRecordService.class)).thenReturn(paperRecordService);
}
Aggregations