Home / Class/ NativeLoadingTest Class — netty Architecture

NativeLoadingTest Class — netty Architecture

Architecture documentation for the NativeLoadingTest class in NativeLoadingTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  6408ccf9_a883_457f_58ec_1bb73dfdee6c["NativeLoadingTest"]
  0c0cfda8_862b_5d16_8520_273ca1345865["NativeLoadingTest.java"]
  6408ccf9_a883_457f_58ec_1bb73dfdee6c -->|defined in| 0c0cfda8_862b_5d16_8520_273ca1345865
  e4153caf_f13b_230a_7a98_1ab24ffdb875["testNativeLoadingKqueue()"]
  6408ccf9_a883_457f_58ec_1bb73dfdee6c -->|method| e4153caf_f13b_230a_7a98_1ab24ffdb875
  8b745b5e_3ec1_040c_9d1a_c3ad2eef6e47["testNativeLoadingDnsServerAddressStreamProvider()"]
  6408ccf9_a883_457f_58ec_1bb73dfdee6c -->|method| 8b745b5e_3ec1_040c_9d1a_c3ad2eef6e47
  4c0e43c0_e056_d44a_3636_aa399fbe128b["testNativeLoadingEpoll()"]
  6408ccf9_a883_457f_58ec_1bb73dfdee6c -->|method| 4c0e43c0_e056_d44a_3636_aa399fbe128b

Relationship Graph

Source Code

testsuite-native/src/test/java/io/netty/testsuite_native/NativeLoadingTest.java lines 25–44

public class NativeLoadingTest {

    @Test
    @EnabledOnOs(OS.MAC)
    public void testNativeLoadingKqueue() {
        KQueue.ensureAvailability();
    }

    @Test
    @EnabledOnOs(OS.MAC)
    public void testNativeLoadingDnsServerAddressStreamProvider() {
        MacOSDnsServerAddressStreamProvider.ensureAvailability();
    }

    @Test
    @EnabledOnOs(OS.LINUX)
    public void testNativeLoadingEpoll() {
        Epoll.ensureAvailability();
    }
}

Frequently Asked Questions

What is the NativeLoadingTest class?
NativeLoadingTest is a class in the netty codebase, defined in testsuite-native/src/test/java/io/netty/testsuite_native/NativeLoadingTest.java.
Where is NativeLoadingTest defined?
NativeLoadingTest is defined in testsuite-native/src/test/java/io/netty/testsuite_native/NativeLoadingTest.java at line 25.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free