Home / Function/ testOsClassifiersPropertySingle() — netty Function Reference

testOsClassifiersPropertySingle() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

common/src/test/java/io/netty/util/internal/OsClassifiersTest.java lines 73–82

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

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free