Home / Function/ testAppendString0() — netty Function Reference

testAppendString0() — netty Function Reference

Architecture documentation for the testAppendString0() function in AppendableCharSequenceTest.java from the netty codebase.

Function java Buffer Search calls 1 called by 2

Entity Profile

Dependency Diagram

graph TD
  7045306c_8a32_6a7d_5baa_c207a75ebcfb["testAppendString0()"]
  a1ed9573_3a3a_ecb2_4561_bfbe6b4e61a4["AppendableCharSequenceTest"]
  7045306c_8a32_6a7d_5baa_c207a75ebcfb -->|defined in| a1ed9573_3a3a_ecb2_4561_bfbe6b4e61a4
  a0fcb83f_c0a5_87df_0bcd_a23d8d72b259["testAppendString()"]
  a0fcb83f_c0a5_87df_0bcd_a23d8d72b259 -->|calls| 7045306c_8a32_6a7d_5baa_c207a75ebcfb
  da6b1b3d_c641_c982_0132_1a9f1c44decf["testAppendStringWithExpand()"]
  da6b1b3d_c641_c982_0132_1a9f1c44decf -->|calls| 7045306c_8a32_6a7d_5baa_c207a75ebcfb
  b160ce53_77cd_f03b_0db1_641d4a3972c5["assertEqualsChars()"]
  7045306c_8a32_6a7d_5baa_c207a75ebcfb -->|calls| b160ce53_77cd_f03b_0db1_641d4a3972c5
  style 7045306c_8a32_6a7d_5baa_c207a75ebcfb fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/test/java/io/netty/util/internal/AppendableCharSequenceTest.java lines 91–102

    private static void testAppendString0(AppendableCharSequence seq) {
        String text = "testdata";
        seq.append(text);

        assertEquals(text, seq.toString());
        assertEquals(text.substring(1, text.length() - 2), seq.substring(1, text.length() - 2));

        assertEqualsChars(text, seq);

        seq.reset();
        assertEquals(0, seq.length());
    }

Domain

Subdomains

Frequently Asked Questions

What does testAppendString0() do?
testAppendString0() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/internal/AppendableCharSequenceTest.java.
Where is testAppendString0() defined?
testAppendString0() is defined in common/src/test/java/io/netty/util/internal/AppendableCharSequenceTest.java at line 91.
What does testAppendString0() call?
testAppendString0() calls 1 function(s): assertEqualsChars.
What calls testAppendString0()?
testAppendString0() is called by 2 function(s): testAppendString, testAppendStringWithExpand.

Analyze Your Own Codebase

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

Try Supermodel Free