Home / Function/ testRejectCookieValueWithSemicolon() — netty Function Reference

testRejectCookieValueWithSemicolon() — netty Function Reference

Architecture documentation for the testRejectCookieValueWithSemicolon() function in ClientCookieEncoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  52c7e678_f486_8044_0f47_7c5e7a0b48f9["testRejectCookieValueWithSemicolon()"]
  9d43e0ba_e9d0_b3be_6e4d_b637d22c7bd7["ClientCookieEncoderTest"]
  52c7e678_f486_8044_0f47_7c5e7a0b48f9 -->|defined in| 9d43e0ba_e9d0_b3be_6e4d_b637d22c7bd7
  style 52c7e678_f486_8044_0f47_7c5e7a0b48f9 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/test/java/io/netty/handler/codec/http/cookie/ClientCookieEncoderTest.java lines 52–60

    @Test
    public void testRejectCookieValueWithSemicolon() {
        assertThrows(IllegalArgumentException.class, new Executable() {
            @Override
            public void execute() {
                ClientCookieEncoder.STRICT.encode(new DefaultCookie("myCookie", "foo;bar"));
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

What does testRejectCookieValueWithSemicolon() do?
testRejectCookieValueWithSemicolon() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/cookie/ClientCookieEncoderTest.java.
Where is testRejectCookieValueWithSemicolon() defined?
testRejectCookieValueWithSemicolon() is defined in codec-http/src/test/java/io/netty/handler/codec/http/cookie/ClientCookieEncoderTest.java at line 52.

Analyze Your Own Codebase

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

Try Supermodel Free