Home / Function/ testIsPseudoHeader() — netty Function Reference

testIsPseudoHeader() — netty Function Reference

Architecture documentation for the testIsPseudoHeader() function in Http2HeadersTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  7c27d3c0_ae0b_2c9c_7c6f_c76e26d76cc9["testIsPseudoHeader()"]
  72391011_298b_65ee_6a85_34bcab232f3f["Http2HeadersTest"]
  7c27d3c0_ae0b_2c9c_7c6f_c76e26d76cc9 -->|defined in| 72391011_298b_65ee_6a85_34bcab232f3f
  style 7c27d3c0_ae0b_2c9c_7c6f_c76e26d76cc9 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/Http2HeadersTest.java lines 50–60

    @Test
    public void testIsPseudoHeader() {
        // same as before but for isPseudoHeader
        for (PseudoHeaderName pseudoHeaderName : PseudoHeaderName.values()) {
            assertTrue(isPseudoHeader(pseudoHeaderName.value()));
            assertTrue(isPseudoHeader(new AsciiString(pseudoHeaderName.value().array())));
            assertTrue(isPseudoHeader(pseudoHeaderName.value().toString()));
            assertTrue(isPseudoHeader(new String(pseudoHeaderName.value().toCharArray())));
            assertTrue(isPseudoHeader(new StringBuilder(pseudoHeaderName.value())));
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does testIsPseudoHeader() do?
testIsPseudoHeader() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2HeadersTest.java.
Where is testIsPseudoHeader() defined?
testIsPseudoHeader() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2HeadersTest.java at line 50.

Analyze Your Own Codebase

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

Try Supermodel Free