Package com.cumulocity.rest.representation.measurement

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

Related Classes of com.cumulocity.rest.representation.measurement.MeasurementRepresentation

Copyright © 2018 www.massapicom. 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.