Package com.chenshuo.muduo.example.multiplexer.testcase

Examples of com.chenshuo.muduo.example.multiplexer.testcase.TestOneClientNoData


    public static void main(String[] args) {
        if (args.length >= 1) {
            String multiplexerHost = args[0];
            MultiplexerTest test = new MultiplexerTest(multiplexerHost);
            test.addTestCase(new TestOneClientNoData());
            test.addTestCase(new TestOneClientSend());
            test.addTestCase(new TestOneClientBackendSend());
            test.addTestCase(new TestOneClientBothSend());
            test.addTestCase(new TestTwoClients());
            test.run();
View Full Code Here

TOP

Related Classes of com.chenshuo.muduo.example.multiplexer.testcase.TestOneClientNoData

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.