Package org.zanata.rest.client

Examples of org.zanata.rest.client.ISourceDocResource


        }
    }

    @Test
    public void getBadProject() throws Exception {
        ISourceDocResource badSourceResource =
                getClientRequestFactory().createProxy(ISourceDocResource.class,
                        createBaseURI(BAD_RESOURCE_PATH));
        ClientResponse<List<ResourceMeta>> response =
                badSourceResource.get(null);
        assertThat(response.getStatus(), is(404));
    }
View Full Code Here

TOP

Related Classes of org.zanata.rest.client.ISourceDocResource

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.