use of org.opensmartgridplatform.adapter.protocol.dlms.domain.entities.Protocol in project open-smart-grid-platform by OSGP.
the class ProtocolServiceLookupTest method lookupGetService.
@Test
public void lookupGetService() throws ProtocolAdapterException {
// SETUP
final Protocol protocol = Protocol.DSMR_4_2_2;
// CALL
final GetConfigurationObjectService result = this.instance.lookupGetService(protocol);
// VERIFY
assertThat(result).isSameAs(this.getService);
}
Aggregations