Package org.apache.zookeeper.test.AsyncOps

Examples of org.apache.zookeeper.test.AsyncOps.Create2CB


        new StringCB(zk).verifyCreate();
    }

    @Test
    public void testAsyncCreate2() {
        new Create2CB(zk).verifyCreate();
    }
View Full Code Here


        new StringCB(zk).verifyCreateFailure_NoChildForEphemeral();
    }

    @Test
    public void testAsyncCreate2Failure_NodeExists() {
        new Create2CB(zk).verifyCreateFailure_NodeExists();
    }
View Full Code Here

        new Create2CB(zk).verifyCreateFailure_NodeExists();
    }

    @Test
    public void testAsyncCreate2Failure_NoNode() {
        new Create2CB(zk).verifyCreateFailure_NoNode();
    }
View Full Code Here

    }


    @Test
    public void testAsyncCreate2Failure_NoChildForEphemeral() {
        new Create2CB(zk).verifyCreateFailure_NoChildForEphemeral();
    }
View Full Code Here

TOP

Related Classes of org.apache.zookeeper.test.AsyncOps.Create2CB

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.