Java Code Examples for io.netty.testsuite.transport.TestsuitePermutation#BootstrapFactory
The following examples show how to use
io.netty.testsuite.transport.TestsuitePermutation#BootstrapFactory .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AbstractServerSocketTest.java From netty-4.1.22 with Apache License 2.0 | 4 votes |
@Override protected List<TestsuitePermutation.BootstrapFactory<ServerBootstrap>> newFactories() { return SocketTestPermutation.INSTANCE.serverSocket(); }
Example 2
Source File: DatagramConnectNotExistsTest.java From netty-4.1.22 with Apache License 2.0 | 4 votes |
@Override protected List<TestsuitePermutation.BootstrapFactory<Bootstrap>> newFactories() { return SocketTestPermutation.INSTANCE.datagramSocket(); }
Example 3
Source File: AbstractClientSocketTest.java From netty-4.1.22 with Apache License 2.0 | 4 votes |
@Override protected List<TestsuitePermutation.BootstrapFactory<Bootstrap>> newFactories() { return SocketTestPermutation.INSTANCE.clientSocket(); }
Example 4
Source File: KQueueSocketShutdownOutputByPeerTest.java From netty-4.1.22 with Apache License 2.0 | 4 votes |
@Override protected List<TestsuitePermutation.BootstrapFactory<ServerBootstrap>> newFactories() { return KQueueSocketTestPermutation.INSTANCE.serverSocket(); }
Example 5
Source File: KQueueSocketShutdownOutputBySelfTest.java From netty-4.1.22 with Apache License 2.0 | 4 votes |
@Override protected List<TestsuitePermutation.BootstrapFactory<Bootstrap>> newFactories() { return KQueueSocketTestPermutation.INSTANCE.clientSocket(); }
Example 6
Source File: KQueueSocketConnectionAttemptTest.java From netty-4.1.22 with Apache License 2.0 | 4 votes |
@Override protected List<TestsuitePermutation.BootstrapFactory<Bootstrap>> newFactories() { return KQueueSocketTestPermutation.INSTANCE.clientSocket(); }
Example 7
Source File: KQueueSocketChannelNotYetConnectedTest.java From netty-4.1.22 with Apache License 2.0 | 4 votes |
@Override protected List<TestsuitePermutation.BootstrapFactory<Bootstrap>> newFactories() { return KQueueSocketTestPermutation.INSTANCE.clientSocket(); }
Example 8
Source File: KQueueDatagramConnectNotExistsTest.java From netty-4.1.22 with Apache License 2.0 | 4 votes |
@Override protected List<TestsuitePermutation.BootstrapFactory<Bootstrap>> newFactories() { return KQueueSocketTestPermutation.INSTANCE.datagramSocket(); }
Example 9
Source File: EpollSocketConnectionAttemptTest.java From netty-4.1.22 with Apache License 2.0 | 4 votes |
@Override protected List<TestsuitePermutation.BootstrapFactory<Bootstrap>> newFactories() { return EpollSocketTestPermutation.INSTANCE.clientSocket(); }
Example 10
Source File: EpollDatagramConnectNotExistsTest.java From netty-4.1.22 with Apache License 2.0 | 4 votes |
@Override protected List<TestsuitePermutation.BootstrapFactory<Bootstrap>> newFactories() { return EpollSocketTestPermutation.INSTANCE.datagramSocket(); }
Example 11
Source File: EpollSocketChannelNotYetConnectedTest.java From netty-4.1.22 with Apache License 2.0 | 4 votes |
@Override protected List<TestsuitePermutation.BootstrapFactory<Bootstrap>> newFactories() { return EpollSocketTestPermutation.INSTANCE.clientSocket(); }
Example 12
Source File: EpollSocketShutdownOutputBySelfTest.java From netty-4.1.22 with Apache License 2.0 | 4 votes |
@Override protected List<TestsuitePermutation.BootstrapFactory<Bootstrap>> newFactories() { return EpollSocketTestPermutation.INSTANCE.clientSocket(); }
Example 13
Source File: EpollSocketShutdownOutputByPeerTest.java From netty-4.1.22 with Apache License 2.0 | 4 votes |
@Override protected List<TestsuitePermutation.BootstrapFactory<ServerBootstrap>> newFactories() { return EpollSocketTestPermutation.INSTANCE.serverSocket(); }
Example 14
Source File: AbstractServerSocketTest.java From netty4.0.27Learn with Apache License 2.0 | 4 votes |
@Override protected List<TestsuitePermutation.BootstrapFactory<ServerBootstrap>> newFactories() { return SocketTestPermutation.INSTANCE.serverSocket(); }
Example 15
Source File: AbstractClientSocketTest.java From netty4.0.27Learn with Apache License 2.0 | 4 votes |
@Override protected List<TestsuitePermutation.BootstrapFactory<Bootstrap>> newFactories() { return SocketTestPermutation.INSTANCE.clientSocket(); }