Home / Function/ testSetNullHeaderValueNotValidate() — netty Function Reference

testSetNullHeaderValueNotValidate() — netty Function Reference

Architecture documentation for the testSetNullHeaderValueNotValidate() function in DefaultHttpHeadersTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  951ab4cf_7a38_e668_362c_23b83a1be895["testSetNullHeaderValueNotValidate()"]
  f85bc383_4d1b_f750_ebed_0a80200aa397["DefaultHttpHeadersTest"]
  951ab4cf_7a38_e668_362c_23b83a1be895 -->|defined in| f85bc383_4d1b_f750_ebed_0a80200aa397
  73b6eb5c_3d1f_023a_42aa_4bac6bac0ba9["DefaultHttpHeaders()"]
  951ab4cf_7a38_e668_362c_23b83a1be895 -->|calls| 73b6eb5c_3d1f_023a_42aa_4bac6bac0ba9
  style 951ab4cf_7a38_e668_362c_23b83a1be895 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/test/java/io/netty/handler/codec/http/DefaultHttpHeadersTest.java lines 182–191

    @Test
    public void testSetNullHeaderValueNotValidate() {
        final HttpHeaders headers = new DefaultHttpHeaders(false);
        assertThrows(NullPointerException.class, new Executable() {
            @Override
            public void execute() {
                headers.set(of("test"), (CharSequence) null);
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

What does testSetNullHeaderValueNotValidate() do?
testSetNullHeaderValueNotValidate() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/DefaultHttpHeadersTest.java.
Where is testSetNullHeaderValueNotValidate() defined?
testSetNullHeaderValueNotValidate() is defined in codec-http/src/test/java/io/netty/handler/codec/http/DefaultHttpHeadersTest.java at line 182.
What does testSetNullHeaderValueNotValidate() call?
testSetNullHeaderValueNotValidate() calls 1 function(s): DefaultHttpHeaders.

Analyze Your Own Codebase

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

Try Supermodel Free