Home / Function/ testEqualsAndHashCodeCompareSettings() — netty Function Reference

testEqualsAndHashCodeCompareSettings() — netty Function Reference

Architecture documentation for the testEqualsAndHashCodeCompareSettings() function in DefaultHttp3SettingsFrameTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  014d7c28_f236_c78c_176f_a2e8702f50a7["testEqualsAndHashCodeCompareSettings()"]
  7f96b856_e26b_5a86_c5be_2535fa398741["DefaultHttp3SettingsFrameTest"]
  014d7c28_f236_c78c_176f_a2e8702f50a7 -->|defined in| 7f96b856_e26b_5a86_c5be_2535fa398741
  style 014d7c28_f236_c78c_176f_a2e8702f50a7 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/test/java/io/netty/handler/codec/http3/DefaultHttp3SettingsFrameTest.java lines 78–88

    @Test
    void testEqualsAndHashCodeCompareSettings() {
        Http3Settings s1 = new Http3Settings().qpackMaxTableCapacity(128);
        Http3Settings s2 = new Http3Settings().qpackMaxTableCapacity(128);

        DefaultHttp3SettingsFrame f1 = new DefaultHttp3SettingsFrame(s1);
        DefaultHttp3SettingsFrame f2 = new DefaultHttp3SettingsFrame(s2);

        assertEquals(f1, f2);
        assertEquals(f1.hashCode(), f2.hashCode());
    }

Domain

Subdomains

Frequently Asked Questions

What does testEqualsAndHashCodeCompareSettings() do?
testEqualsAndHashCodeCompareSettings() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/DefaultHttp3SettingsFrameTest.java.
Where is testEqualsAndHashCodeCompareSettings() defined?
testEqualsAndHashCodeCompareSettings() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/DefaultHttp3SettingsFrameTest.java at line 78.

Analyze Your Own Codebase

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

Try Supermodel Free