testTransportChannelInitializerExtensionUseDeclaration() — netty Function Reference
Architecture documentation for the testTransportChannelInitializerExtensionUseDeclaration() function in CheckModuleDescriptorTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 4c7564f5_8095_1bb2_618d_29d9dfcc1810["testTransportChannelInitializerExtensionUseDeclaration()"] 4418e6e7_a851_3e87_440a_fdf2c6ee7f92["CheckModuleDescriptorTest"] 4c7564f5_8095_1bb2_618d_29d9dfcc1810 -->|defined in| 4418e6e7_a851_3e87_440a_fdf2c6ee7f92 style 4c7564f5_8095_1bb2_618d_29d9dfcc1810 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
testsuite-jpms/src/test/java/io/netty/testsuite_jpms/test/CheckModuleDescriptorTest.java lines 52–61
@Test
public void testTransportChannelInitializerExtensionUseDeclaration() {
Optional<Module> opt = ModuleLayer.boot().findModule("io.netty.transport");
assertTrue(opt.isPresent());
Module module = opt.get();
Set<String> providesSet = module.getDescriptor().uses();
assertEquals(1, providesSet.size());
String use = providesSet.iterator().next();
assertEquals(ChannelInitializerExtension.class.getName(), use);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testTransportChannelInitializerExtensionUseDeclaration() do?
testTransportChannelInitializerExtensionUseDeclaration() is a function in the netty codebase, defined in testsuite-jpms/src/test/java/io/netty/testsuite_jpms/test/CheckModuleDescriptorTest.java.
Where is testTransportChannelInitializerExtensionUseDeclaration() defined?
testTransportChannelInitializerExtensionUseDeclaration() is defined in testsuite-jpms/src/test/java/io/netty/testsuite_jpms/test/CheckModuleDescriptorTest.java at line 52.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free