testSetNullHeaderValueNotValidate() — netty Function Reference
Architecture documentation for the testSetNullHeaderValueNotValidate() function in HttpHeadersTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD fd020592_20ff_12d1_f543_a9d1e4bd8fd1["testSetNullHeaderValueNotValidate()"] 37d2d3ee_df05_c9d3_2b70_220a829fec9e["HttpHeadersTest"] fd020592_20ff_12d1_f543_a9d1e4bd8fd1 -->|defined in| 37d2d3ee_df05_c9d3_2b70_220a829fec9e style fd020592_20ff_12d1_f543_a9d1e4bd8fd1 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/test/java/io/netty/handler/codec/http/HttpHeadersTest.java lines 75–84
@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
Source
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/HttpHeadersTest.java.
Where is testSetNullHeaderValueNotValidate() defined?
testSetNullHeaderValueNotValidate() is defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpHeadersTest.java at line 75.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free