Package org.zanata.apicompat.rest.client

Examples of org.zanata.apicompat.rest.client.IVersionResource


    }

    @Test
    @RunAsClient
    public void getVersionXml() {
        IVersionResource versionClient =
                super.createProxy(
                        createClientProxyFactory(TRANSLATOR, TRANSLATOR_KEY),
                        IVersionResource.class);
        VersionInfo versionInfo = versionClient.get().getEntity();

        assertThat(versionInfo.getVersionNo(), notNullValue());
        assertThat(versionInfo.getBuildTimeStamp(), notNullValue());
    }
View Full Code Here

TOP

Related Classes of org.zanata.apicompat.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.