Home / Function/ testRegionMatchesAsciiReturnsFalseForDifferentRegions() — netty Function Reference

testRegionMatchesAsciiReturnsFalseForDifferentRegions() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

common/src/test/java/io/netty/util/AsciiStringCharacterTest.java lines 510–517

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

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free