successiveCallsShouldSucceed() — netty Function Reference
Architecture documentation for the successiveCallsShouldSucceed() function in Http2HeaderBlockIOTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 06aeaa6a_fbe8_53a7_4dfa_3070a240cdd1["successiveCallsShouldSucceed()"] 67a68679_3177_7ad0_91a4_a6521917b637["Http2HeaderBlockIOTest"] 06aeaa6a_fbe8_53a7_4dfa_3070a240cdd1 -->|defined in| 67a68679_3177_7ad0_91a4_a6521917b637 09cab6d1_a80c_8459_69c5_5ca78b3c180c["assertRoundtripSuccessful()"] 06aeaa6a_fbe8_53a7_4dfa_3070a240cdd1 -->|calls| 09cab6d1_a80c_8459_69c5_5ca78b3c180c style 06aeaa6a_fbe8_53a7_4dfa_3070a240cdd1 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2HeaderBlockIOTest.java lines 55–73
@Test
public void successiveCallsShouldSucceed() throws Http2Exception {
Http2Headers in = new DefaultHttp2Headers().method(new AsciiString("GET")).scheme(new AsciiString("https"))
.authority(new AsciiString("example.org")).path(new AsciiString("/some/path"))
.add(new AsciiString("accept"), new AsciiString("*/*"));
assertRoundtripSuccessful(in);
in = new DefaultHttp2Headers().method(new AsciiString("GET")).scheme(new AsciiString("https"))
.authority(new AsciiString("example.org")).path(new AsciiString("/some/path/resource1"))
.add(new AsciiString("accept"), new AsciiString("image/jpeg"))
.add(new AsciiString("cache-control"), new AsciiString("no-cache"));
assertRoundtripSuccessful(in);
in = new DefaultHttp2Headers().method(new AsciiString("GET")).scheme(new AsciiString("https"))
.authority(new AsciiString("example.org")).path(new AsciiString("/some/path/resource2"))
.add(new AsciiString("accept"), new AsciiString("image/png"))
.add(new AsciiString("cache-control"), new AsciiString("no-cache"));
assertRoundtripSuccessful(in);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does successiveCallsShouldSucceed() do?
successiveCallsShouldSucceed() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2HeaderBlockIOTest.java.
Where is successiveCallsShouldSucceed() defined?
successiveCallsShouldSucceed() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2HeaderBlockIOTest.java at line 55.
What does successiveCallsShouldSucceed() call?
successiveCallsShouldSucceed() calls 1 function(s): assertRoundtripSuccessful.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free