Examples of UniverseInfoReply


Examples of ola.proto.Ola.UniverseInfoReply

        System.out.println(reply);
    }

    @Test
    public void testGetUniverseInfo() {
        UniverseInfoReply reply = client.getUniverseInfo(0);
        assertNotNull(reply);
        System.out.println(reply);
    }
View Full Code Here

Examples of ola.proto.Ola.UniverseInfoReply

    }

    @Test
    public void testSetUniverseName() {
        client.setUniverseName(0, "outerspace");
        UniverseInfoReply reply = client.getUniverseInfo(0);
        assertEquals(reply.getUniverse(0).getName(), "outerspace");
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.