Package com.netflix.suro.input

Examples of com.netflix.suro.input.InputManager


    @Rule
    public SuroServerExternalResource suroServer = new SuroServerExternalResource();

    @Test
    public void test() throws TTransportException, IOException {
        InputManager inputManager = mock(InputManager.class);
        doReturn(mock(SuroInput.class)).when(inputManager).getInput("thrift");
        HealthCheck healthCheck = new HealthCheck(new ServerConfig() {
            @Override
            public int getPort() {
                return suroServer.getServerPort();
View Full Code Here

TOP

Related Classes of com.netflix.suro.input.InputManager

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.