Package streamer

Examples of streamer.SocketWrapper


@RunWith(PowerMockRunner.class)
public class ClientTest {

    @Test(expected = NullPointerException.class)
    public void testAssemblePipelineWhenMainElementIsNull() throws Exception {
        SocketWrapper socketMock = mock(SocketWrapper.class);
        when(socketMock.getId()).thenReturn("socket");
        Whitebox.setInternalState(Client.class, "socket", socketMock);
        Element main = null;

        Client.assemblePipeline(main);
    }
View Full Code Here

TOP

Related Classes of streamer.SocketWrapper

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.