testCompressible() — netty Function Reference
Architecture documentation for the testCompressible() function in AbstractIntegrationTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 66beb20e_aa95_3f44_4b5e_c172220a5df0["testCompressible()"] 60eb60f4_51df_0542_7955_f04cb7b76df6["AbstractIntegrationTest"] 66beb20e_aa95_3f44_4b5e_c172220a5df0 -->|defined in| 60eb60f4_51df_0542_7955_f04cb7b76df6 182a189f_cae8_5dd2_73a7_5770346ff2cd["testIdentity()"] 66beb20e_aa95_3f44_4b5e_c172220a5df0 -->|calls| 182a189f_cae8_5dd2_73a7_5770346ff2cd style 66beb20e_aa95_3f44_4b5e_c172220a5df0 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-compression/src/test/java/io/netty/handler/codec/compression/AbstractIntegrationTest.java lines 125–133
@Test
public void testCompressible() throws Exception {
final byte[] data = new byte[10240];
for (int i = 0; i < data.length; i++) {
data[i] = i % 4 != 0 ? 0 : (byte) rand.nextInt();
}
testIdentity(data, true);
testIdentity(data, false);
}
Domain
Subdomains
Defined In
Calls
Source
Frequently Asked Questions
What does testCompressible() do?
testCompressible() is a function in the netty codebase, defined in codec-compression/src/test/java/io/netty/handler/codec/compression/AbstractIntegrationTest.java.
Where is testCompressible() defined?
testCompressible() is defined in codec-compression/src/test/java/io/netty/handler/codec/compression/AbstractIntegrationTest.java at line 125.
What does testCompressible() call?
testCompressible() calls 1 function(s): testIdentity.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free