Package com.cumulocity.rest.representation.inventory

Examples of com.cumulocity.rest.representation.inventory.InventoryRepresentation


    @Test
    public void shouldParseDifferentSpecificType() throws Exception {
        // Given
        when(response.getStatus()).thenReturn(EXPECTED_STATUS);
        InventoryRepresentation representation = new InventoryRepresentation();
        when(response.getEntity(InventoryRepresentation.class)).thenReturn(representation);

        // When
        InventoryRepresentation result = parser.parse(response, EXPECTED_STATUS, InventoryRepresentation.class);

        // Then
        assertThat(result, sameInstance(representation));
    }
View Full Code Here

TOP

Related Classes of com.cumulocity.rest.representation.inventory.InventoryRepresentation

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.