use of org.opensmartgridplatform.adapter.protocol.dlms.domain.commands.configuration.service.GetConfigurationObjectServiceDsmr4 in project open-smart-grid-platform by OSGP.
the class SetConfigurationObjectCommandExecutorDsmr4IT method setUp.
@BeforeEach
public void setUp() throws IOException {
final DlmsHelper dlmsHelper = new DlmsHelper();
final GetConfigurationObjectService getService = new GetConfigurationObjectServiceDsmr4(dlmsHelper);
final SetConfigurationObjectService setService = new SetConfigurationObjectServiceDsmr4(dlmsHelper);
super.setUp(getService, setService);
}
Also used :
DlmsHelper(org.opensmartgridplatform.adapter.protocol.dlms.domain.commands.utils.DlmsHelper)
SetConfigurationObjectService(org.opensmartgridplatform.adapter.protocol.dlms.domain.commands.configuration.service.SetConfigurationObjectService)
GetConfigurationObjectService(org.opensmartgridplatform.adapter.protocol.dlms.domain.commands.configuration.service.GetConfigurationObjectService)
GetConfigurationObjectServiceDsmr4(org.opensmartgridplatform.adapter.protocol.dlms.domain.commands.configuration.service.GetConfigurationObjectServiceDsmr4)
SetConfigurationObjectServiceDsmr4(org.opensmartgridplatform.adapter.protocol.dlms.domain.commands.configuration.service.SetConfigurationObjectServiceDsmr4)
BeforeEach(org.junit.jupiter.api.BeforeEach)