Home / Class/ TestRandomChecksum Class — netty Architecture

TestRandomChecksum Class — netty Architecture

Architecture documentation for the TestRandomChecksum class in FastLzIntegrationTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  cb167c5e_2020_7202_843c_7beeea53b824["TestRandomChecksum"]
  59cedf6c_8f19_f564_6deb_753017d95d77["FastLzIntegrationTest.java"]
  cb167c5e_2020_7202_843c_7beeea53b824 -->|defined in| 59cedf6c_8f19_f564_6deb_753017d95d77
  434cc9a0_5f4f_19bb_b1b9_b9aec3bd8fe8["EmbeddedChannel()"]
  cb167c5e_2020_7202_843c_7beeea53b824 -->|method| 434cc9a0_5f4f_19bb_b1b9_b9aec3bd8fe8

Relationship Graph

Source Code

codec-compression/src/test/java/io/netty/handler/codec/compression/FastLzIntegrationTest.java lines 41–52

    public static class TestRandomChecksum extends AbstractIntegrationTest {

        @Override
        protected EmbeddedChannel createEncoder() {
            return new EmbeddedChannel(new FastLzFrameEncoder(rand.nextBoolean()));
        }

        @Override
        protected EmbeddedChannel createDecoder() {
            return new EmbeddedChannel(new FastLzFrameDecoder(rand.nextBoolean()));
        }
    }

Frequently Asked Questions

What is the TestRandomChecksum class?
TestRandomChecksum is a class in the netty codebase, defined in codec-compression/src/test/java/io/netty/handler/codec/compression/FastLzIntegrationTest.java.
Where is TestRandomChecksum defined?
TestRandomChecksum is defined in codec-compression/src/test/java/io/netty/handler/codec/compression/FastLzIntegrationTest.java at line 41.

Analyze Your Own Codebase

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

Try Supermodel Free