Home / Function/ testIteratorReflectsSettingsEntries() — netty Function Reference

testIteratorReflectsSettingsEntries() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

codec-http3/src/test/java/io/netty/handler/codec/http3/DefaultHttp3SettingsFrameTest.java lines 90–106

    @Test
    void testIteratorReflectsSettingsEntries() {
        Http3Settings settings = new Http3Settings()
                .qpackMaxTableCapacity(64)
                .qpackBlockedStreams(2);
        DefaultHttp3SettingsFrame frame = new DefaultHttp3SettingsFrame(settings);

        Iterator<Map.Entry<Long, Long>> it = frame.iterator();
        int count = 0;
        while (it.hasNext()) {
            Map.Entry<Long, Long> entry = it.next();
            assertNotNull(entry.getKey());
            assertNotNull(entry.getValue());
            count++;
        }
        assertTrue(count >= 2);
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free