Examples of MeasurementRepresentation


Examples of com.cumulocity.rest.representation.measurement.MeasurementRepresentation

    @Test
    public void shouldDeleteMeasurementRep() throws SDKException {
        // Given
        String gidValue = "123";
        GId gid = new GId(gidValue);
        MeasurementRepresentation meas = new MeasurementRepresentation();
        meas.setId(gid);

        //when
        measurementApi.deleteMeasurement(meas);

        //then
View Full Code Here

Examples of com.cumulocity.rest.representation.measurement.MeasurementRepresentation

    }

    @Test
    public void testCreate() throws SDKException {
        //Given
        MeasurementRepresentation measurement = new MeasurementRepresentation();
        MeasurementRepresentation created = new MeasurementRepresentation();
        when(restConnector.post(MEASUREMENT_COLLECTION_URL, MeasurementMediaType.MEASUREMENT, measurement)).thenReturn(created);

        // When
        MeasurementRepresentation result = measurementApi.create(measurement);

        //then
        assertThat(result, sameInstance(created));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.