Package com.cumulocity.rest.representation

Examples of com.cumulocity.rest.representation.TestCollectionRepresentation


    @Test
    public void shouldGetPreviousPage() throws SDKException {
        // Given
        String url = "/measuremnt/measurments";
        TestCollectionRepresentation input = new TestCollectionRepresentation();
        input.setPrev(url);

        TestCollectionRepresentation expectedResult = new TestCollectionRepresentation();
        when(restConnector.get(url, MEDIA_TYPE, CLAZZ)).thenReturn(expectedResult);

        // When
        TestCollectionRepresentation prevPage = target.getPreviousPage(input);

        // Then
        assertThat(prevPage, is(expectedResult));
    }
View Full Code Here


    }

    @Test
    public void shouldGetPreviousPageInvalidInput() throws SDKException {
        // Given
        TestCollectionRepresentation input = new TestCollectionRepresentation();

        // When
        TestCollectionRepresentation prevPage = target.getPreviousPage(input);

        // Then
        assertNull(prevPage);
    }
View Full Code Here

TOP

Related Classes of com.cumulocity.rest.representation.TestCollectionRepresentation

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.