Home / Function/ testCopyFrom() — netty Function Reference

testCopyFrom() — netty Function Reference

Architecture documentation for the testCopyFrom() function in Http3SettingsTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  08687835_6900_6ef4_006c_d7e1642ca932["testCopyFrom()"]
  ee6f69e5_fb9f_2be4_c226_579273bf8ce3["Http3SettingsTest"]
  08687835_6900_6ef4_006c_d7e1642ca932 -->|defined in| ee6f69e5_fb9f_2be4_c226_579273bf8ce3
  style 08687835_6900_6ef4_006c_d7e1642ca932 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/test/java/io/netty/handler/codec/http3/Http3SettingsTest.java lines 135–147

    @Test
    void testCopyFrom() {
        Http3Settings src = new Http3Settings()
                .qpackMaxTableCapacity(512)
                .enableConnectProtocol(true)
                .qpackBlockedStreams(9);
        Http3Settings dst = new Http3Settings();
        dst.putAll(src);
        assertEquals(src, dst);

        src.qpackMaxTableCapacity(100);
        assertNotEquals(src, dst);
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free