Home / Function/ testOsClassifiersPropertyPair() — netty Function Reference

testOsClassifiersPropertyPair() — netty Function Reference

Architecture documentation for the testOsClassifiersPropertyPair() function in OsClassifiersTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  fe567d48_aa7e_25a8_f0a1_3b5d981fd978["testOsClassifiersPropertyPair()"]
  9e5da98b_558f_f85d_cbb6_fcefcb3a3867["OsClassifiersTest"]
  fe567d48_aa7e_25a8_f0a1_3b5d981fd978 -->|defined in| 9e5da98b_558f_f85d_cbb6_fcefcb3a3867
  style fe567d48_aa7e_25a8_f0a1_3b5d981fd978 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/test/java/io/netty/util/internal/OsClassifiersTest.java lines 84–93

    @Test
    void testOsClassifiersPropertyPair() {
        // ID, ID_LIKE
        systemProperties.setProperty(OS_CLASSIFIERS_PROPERTY, "manjaro,arch");
        Set<String> available = new LinkedHashSet<>(2);
        boolean added = PlatformDependent.addPropertyOsClassifiers(available);
        assertTrue(added);
        assertEquals(1, available.size());
        assertEquals("arch", available.iterator().next());
    }

Domain

Subdomains

Frequently Asked Questions

What does testOsClassifiersPropertyPair() do?
testOsClassifiersPropertyPair() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/internal/OsClassifiersTest.java.
Where is testOsClassifiersPropertyPair() defined?
testOsClassifiersPropertyPair() is defined in common/src/test/java/io/netty/util/internal/OsClassifiersTest.java at line 84.

Analyze Your Own Codebase

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

Try Supermodel Free