use of org.openmrs.module.emrapi.EmrApiProperties in project openmrs-module-pihcore by PIH.
the class ZplLabLabelTemplateTest method setup.
@Before
public void setup() {
primaryIdentifierType = new PatientIdentifierType();
template = new ZplLabLabelTemplate();
EmrApiProperties emrApiProperties = mock(EmrApiProperties.class);
when(emrApiProperties.getPrimaryIdentifierType()).thenReturn(primaryIdentifierType);
template.setEmrApiProperties(emrApiProperties);
}
Aggregations