Package org.zanata.rest.client

Examples of org.zanata.rest.client.IVersionResource


    protected void prepareDBUnitOperations() {
    }

    @Test
    public void retrieveVersionInfo() {
        IVersionResource resource;
        log.debug("setup test version service");
        resource =
                getClientRequestFactory().createProxy(IVersionResource.class);

        VersionInfo entity = resource.get().getEntity();
        assertThat(entity.getVersionNo(), is(vVar));
        assertThat(entity.getBuildTimeStamp(), is(vBuild));
    }
View Full Code Here

TOP

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

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.