Home / Function/ testNullValuesAreForbidden() — netty Function Reference

testNullValuesAreForbidden() — netty Function Reference

Architecture documentation for the testNullValuesAreForbidden() function in DomainWildcardMappingBuilderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  72bc40b6_9c07_5d53_ba38_67a095ed33d8["testNullValuesAreForbidden()"]
  972b1e38_da49_3f4c_f0a6_e437bf5297c6["DomainWildcardMappingBuilderTest"]
  72bc40b6_9c07_5d53_ba38_67a095ed33d8 -->|defined in| 972b1e38_da49_3f4c_f0a6_e437bf5297c6
  style 72bc40b6_9c07_5d53_ba38_67a095ed33d8 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/test/java/io/netty/util/DomainWildcardMappingBuilderTest.java lines 47–55

    @Test
    public void testNullValuesAreForbidden() {
        assertThrows(NullPointerException.class, new Executable() {
            @Override
            public void execute() {
                new DomainWildcardMappingBuilder<String>("NotFound").add("Some key", null);
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

What does testNullValuesAreForbidden() do?
testNullValuesAreForbidden() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/DomainWildcardMappingBuilderTest.java.
Where is testNullValuesAreForbidden() defined?
testNullValuesAreForbidden() is defined in common/src/test/java/io/netty/util/DomainWildcardMappingBuilderTest.java at line 47.

Analyze Your Own Codebase

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

Try Supermodel Free