testInvalidNioChannelOption() — netty Function Reference
Architecture documentation for the testInvalidNioChannelOption() function in AbstractNioChannelTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD ab4a748a_963a_d48e_97e7_92ea175affe6["testInvalidNioChannelOption()"] ef48be8c_d69f_4646_8b43_b90c210b17bf["AbstractNioChannelTest"] ab4a748a_963a_d48e_97e7_92ea175affe6 -->|defined in| ef48be8c_d69f_4646_8b43_b90c210b17bf c0c7707b_a480_1dac_a261_ad28b17b7ed4["newInvalidOption()"] ab4a748a_963a_d48e_97e7_92ea175affe6 -->|calls| c0c7707b_a480_1dac_a261_ad28b17b7ed4 style ab4a748a_963a_d48e_97e7_92ea175affe6 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport/src/test/java/io/netty/channel/socket/nio/AbstractNioChannelTest.java lines 61–71
@Test
public void testInvalidNioChannelOption() {
T channel = newNioChannel();
try {
ChannelOption<?> option = NioChannelOption.of(newInvalidOption());
assertFalse(channel.config().setOption(option, null));
assertNull(channel.config().getOption(option));
} finally {
channel.unsafe().closeForcibly();
}
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does testInvalidNioChannelOption() do?
testInvalidNioChannelOption() is a function in the netty codebase, defined in transport/src/test/java/io/netty/channel/socket/nio/AbstractNioChannelTest.java.
Where is testInvalidNioChannelOption() defined?
testInvalidNioChannelOption() is defined in transport/src/test/java/io/netty/channel/socket/nio/AbstractNioChannelTest.java at line 61.
What does testInvalidNioChannelOption() call?
testInvalidNioChannelOption() calls 1 function(s): newInvalidOption.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free