Package org.xwiki.rest.model.jaxb

Examples of org.xwiki.rest.model.jaxb.Xwiki


    public void testRepresentation() throws Exception
    {
        GetMethod getMethod = executeGet(getFullUri(RootResource.class));
        Assert.assertEquals(getHttpMethodInfo(getMethod), HttpStatus.SC_OK, getMethod.getStatusCode());

        Xwiki xwiki = (Xwiki) unmarshaller.unmarshal(getMethod.getResponseBodyAsStream());

        Link link = getFirstLinkByRelation(xwiki, Relations.WIKIS);
        Assert.assertNotNull(link);

        link = getFirstLinkByRelation(xwiki, Relations.SYNTAXES);
View Full Code Here

TOP

Related Classes of org.xwiki.rest.model.jaxb.Xwiki

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.