Home / Function/ testRegionMatchesAsciiIgnoreCaseReturnsTrueForEqualRegions() — netty Function Reference

testRegionMatchesAsciiIgnoreCaseReturnsTrueForEqualRegions() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

common/src/test/java/io/netty/util/AsciiStringCharacterTest.java lines 519–526

    @Test
    public void testRegionMatchesAsciiIgnoreCaseReturnsTrueForEqualRegions() {
        AsciiString str = new AsciiString("Hello, World!");
        AsciiString hello = new AsciiString("hello");
        AsciiString world = new AsciiString("world");
        assertTrue(AsciiString.regionMatchesAscii(str, true, 0, hello, 0, 5));
        assertTrue(AsciiString.regionMatchesAscii(str, true, 7, world, 0, 5));
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free