use of org.openmrs.ui.framework.BasicUiUtils in project openmrs-module-coreapps by openmrs.
the class EncounterDiagnosesElementTest method testMessageWithUiUtils.
@Test
public void testMessageWithUiUtils() throws Exception {
EncounterDiagnosesElement element = new EncounterDiagnosesElement();
element.setUiUtils(new BasicUiUtils() {
@Override
public String message(String code, Object... args) {
return "Translated";
}
});
assertThat(element.message("code"), is("Translated"));
}
Aggregations