Package org.apache.wink.itest.subresource

Examples of org.apache.wink.itest.subresource.Comment


        GetMethod getMethod = new GetMethod(postURILocation);
        try {
            client.executeMethod(getMethod);
            assertEquals(200, getMethod.getStatusCode());

            Comment c =
                (Comment)JAXBContext.newInstance(Comment.class.getPackage().getName())
                    .createUnmarshaller().unmarshal(getMethod.getResponseBodyAsStream());
            assertEquals("Anonymous", c.getAuthor());
            assertEquals(10000, c.getId().intValue());
            assertEquals("Hi there", c.getMessage());
        } finally {
            getMethod.releaseConnection();
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.wink.itest.subresource.Comment

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.