Home / Function/ testContentEqualsIgnoreCase() — netty Function Reference

testContentEqualsIgnoreCase() — netty Function Reference

Architecture documentation for the testContentEqualsIgnoreCase() function in AsciiStringCharacterTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  79743b24_8173_105d_55c0_8ffa53a82905["testContentEqualsIgnoreCase()"]
  fd37c1f8_6129_8e57_ad6d_da01ffebceb6["AsciiStringCharacterTest"]
  79743b24_8173_105d_55c0_8ffa53a82905 -->|defined in| fd37c1f8_6129_8e57_ad6d_da01ffebceb6
  style 79743b24_8173_105d_55c0_8ffa53a82905 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/test/java/io/netty/util/AsciiStringCharacterTest.java lines 38–45

    @Test
    public void testContentEqualsIgnoreCase() {
        byte[] bytes = { 32, 'a' };
        AsciiString asciiString = new AsciiString(bytes, 1, 1, false);
        // https://github.com/netty/netty/issues/9475
        assertFalse(asciiString.contentEqualsIgnoreCase("b"));
        assertFalse(asciiString.contentEqualsIgnoreCase(AsciiString.of("b")));
    }

Domain

Subdomains

Frequently Asked Questions

What does testContentEqualsIgnoreCase() do?
testContentEqualsIgnoreCase() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/AsciiStringCharacterTest.java.
Where is testContentEqualsIgnoreCase() defined?
testContentEqualsIgnoreCase() is defined in common/src/test/java/io/netty/util/AsciiStringCharacterTest.java at line 38.

Analyze Your Own Codebase

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

Try Supermodel Free