Package com.streamreduce.rest.dto.response

Examples of com.streamreduce.rest.dto.response.UserResponseDTO


    @Test
    @Ignore
    public void testGetUserByUsername() throws Exception {
        String url = getUrl() + "/" + testUser.getUsername();
        UserResponseDTO user = jsonToObject(makeRequest(url, "GET", null, authToken), TypeFactory.defaultInstance().constructType(UserResponseDTO.class));

        assertNotNull(user);
        assertEquals(testUser.getId(), user.getId());

    }
View Full Code Here

TOP

Related Classes of com.streamreduce.rest.dto.response.UserResponseDTO

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.