use of com.qcadoo.mes.basic.util.CurrencyService in project mes by qcadoo.
the class CurrencyServiceTest method init.
@Before
public final void init() {
MockitoAnnotations.initMocks(this);
currencyService = new CurrencyService();
ReflectionTestUtils.setField(currencyService, "parameterService", parameterService);
given(parameterService.getParameter()).willReturn(parameter);
}
Aggregations