use of org.opensmartgridplatform.dto.da.measurements.elements.BitmaskMeasurementElementDto in project open-smart-grid-platform by OSGP.
the class MeasurementReportFactory method getMeasurementGroup.
private static MeasurementGroupDto getMeasurementGroup(final String identification, final byte value) {
final MeasurementElementDto me = new BitmaskMeasurementElementDto(value);
final MeasurementDto m = new MeasurementDto(Arrays.asList(me));
return new MeasurementGroupDto(identification, Arrays.asList(m));
}
use of org.opensmartgridplatform.dto.da.measurements.elements.BitmaskMeasurementElementDto in project open-smart-grid-platform by OSGP.
the class SinglePointWithQualityAsduHandlerTest method createMeasurementGroup.
private MeasurementGroupDto createMeasurementGroup(final String identification, final boolean value) {
final byte b = value ? (byte) 1 : (byte) 0;
final MeasurementElementDto me = new BitmaskMeasurementElementDto(b);
final MeasurementDto m = new MeasurementDto(Arrays.asList(me));
return new MeasurementGroupDto(identification, Arrays.asList(m));
}
use of org.opensmartgridplatform.dto.da.measurements.elements.BitmaskMeasurementElementDto in project open-smart-grid-platform by OSGP.
the class IeSinglePointWithQualityConverterTest method testConvertIeSinglePointWithQualityOn.
@Test
public void testConvertIeSinglePointWithQualityOn() {
// Arrange
final BitmaskMeasurementElementDto expected = new BitmaskMeasurementElementDto((byte) IE_ON);
final IeSinglePointWithQuality source = new IeSinglePointWithQuality(true, false, false, false, false);
// Act
final BitmaskMeasurementElementDto actual = this.converter.convert(source, null, null);
// Assert
assertThat(actual).isEqualTo(expected);
}
use of org.opensmartgridplatform.dto.da.measurements.elements.BitmaskMeasurementElementDto in project open-smart-grid-platform by OSGP.
the class IeSinglePointWithQualityConverterTest method testConvertIeSinglePointWithQualityOff.
@Test
public void testConvertIeSinglePointWithQualityOff() {
// Arrange
final BitmaskMeasurementElementDto expected = new BitmaskMeasurementElementDto((byte) IE_OFF);
final IeSinglePointWithQuality source = new IeSinglePointWithQuality(false, false, false, false, false);
// Act
final BitmaskMeasurementElementDto actual = this.converter.convert(source, null, null);
// Assert
assertThat(actual).isEqualTo(expected);
}
use of org.opensmartgridplatform.dto.da.measurements.elements.BitmaskMeasurementElementDto in project open-smart-grid-platform by OSGP.
the class IeSinglePointWithQualityConverterTest method testConvertIeSinglePointWithQualitySubstituted.
@Test
public void testConvertIeSinglePointWithQualitySubstituted() {
// Arrange
final BitmaskMeasurementElementDto expected = new BitmaskMeasurementElementDto((byte) IE_QUALITY_SUBSTITUTED);
final IeSinglePointWithQuality source = new IeSinglePointWithQuality(false, false, true, false, false);
// Act
final BitmaskMeasurementElementDto actual = this.converter.convert(source, null, null);
// Assert
assertThat(actual).isEqualTo(expected);
}
Aggregations