Home / Function/ testPartRandom() — netty Function Reference

testPartRandom() — netty Function Reference

Architecture documentation for the testPartRandom() function in AbstractIntegrationTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  9476e958_a188_ef9e_921d_57eb5d4d0ba3["testPartRandom()"]
  60eb60f4_51df_0542_7955_f04cb7b76df6["AbstractIntegrationTest"]
  9476e958_a188_ef9e_921d_57eb5d4d0ba3 -->|defined in| 60eb60f4_51df_0542_7955_f04cb7b76df6
  182a189f_cae8_5dd2_73a7_5770346ff2cd["testIdentity()"]
  9476e958_a188_ef9e_921d_57eb5d4d0ba3 -->|calls| 182a189f_cae8_5dd2_73a7_5770346ff2cd
  style 9476e958_a188_ef9e_921d_57eb5d4d0ba3 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-compression/src/test/java/io/netty/handler/codec/compression/AbstractIntegrationTest.java lines 114–123

    @Test
    public void testPartRandom() throws Exception {
        final byte[] data = new byte[10240];
        rand.nextBytes(data);
        for (int i = 0; i < 1024; i++) {
            data[i] = 2;
        }
        testIdentity(data, true);
        testIdentity(data, false);
    }

Domain

Subdomains

Frequently Asked Questions

What does testPartRandom() do?
testPartRandom() is a function in the netty codebase, defined in codec-compression/src/test/java/io/netty/handler/codec/compression/AbstractIntegrationTest.java.
Where is testPartRandom() defined?
testPartRandom() is defined in codec-compression/src/test/java/io/netty/handler/codec/compression/AbstractIntegrationTest.java at line 114.
What does testPartRandom() call?
testPartRandom() 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