testEquals() — netty Function Reference
Architecture documentation for the testEquals() function in PlatformDependentTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD ae7336a0_d75b_e2a9_38a5_7221ab42cde4["testEquals()"] ff6bfe0a_3221_685f_da78_ee06b9ccc3c6["PlatformDependentTest"] ae7336a0_d75b_e2a9_38a5_7221ab42cde4 -->|defined in| ff6bfe0a_3221_685f_da78_ee06b9ccc3c6 ceea74ab_d15a_788c_372a_9529b71123d9["testEqualsConsistentTime()"] ceea74ab_d15a_788c_372a_9529b71123d9 -->|calls| ae7336a0_d75b_e2a9_38a5_7221ab42cde4 style ae7336a0_d75b_e2a9_38a5_7221ab42cde4 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/test/java/io/netty/util/internal/PlatformDependentTest.java lines 46–54
@Test
public void testEquals() {
testEquals(new EqualityChecker() {
@Override
public boolean equals(byte[] bytes1, int startPos1, byte[] bytes2, int startPos2, int length) {
return PlatformDependent.equals(bytes1, startPos1, bytes2, startPos2, length);
}
});
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does testEquals() do?
testEquals() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/internal/PlatformDependentTest.java.
Where is testEquals() defined?
testEquals() is defined in common/src/test/java/io/netty/util/internal/PlatformDependentTest.java at line 46.
What calls testEquals()?
testEquals() is called by 1 function(s): testEqualsConsistentTime.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free