Home / Function/ testSemicolon() — netty Function Reference

testSemicolon() — netty Function Reference

Architecture documentation for the testSemicolon() function in QueryStringDecoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  211e1b85_30a1_2219_abcf_8748ab7fb66f["testSemicolon()"]
  eb06d5ec_240d_301a_c763_6ea4da90a16b["QueryStringDecoderTest"]
  211e1b85_30a1_2219_abcf_8748ab7fb66f -->|defined in| eb06d5ec_240d_301a_c763_6ea4da90a16b
  60891ef7_4c7d_a252_fcde_3d0ff6f47034["assertQueryString()"]
  211e1b85_30a1_2219_abcf_8748ab7fb66f -->|calls| 60891ef7_4c7d_a252_fcde_3d0ff6f47034
  style 211e1b85_30a1_2219_abcf_8748ab7fb66f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/test/java/io/netty/handler/codec/http/QueryStringDecoderTest.java lines 149–154

    @Test
    public void testSemicolon() {
        assertQueryString("/foo?a=1;2", "/foo?a=1;2", false);
        // ";" should be treated as a normal character, see #8855
        assertQueryString("/foo?a=1;2", "/foo?a=1%3B2", true);
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free