testAbstractClass() — netty Function Reference
Architecture documentation for the testAbstractClass() function in TypeParameterMatcherTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 8d8e1c1b_ae99_1fe7_391e_4dce9556a9bc["testAbstractClass()"] 0471a2ea_34fb_90fc_b83b_eaf4cc2b794c["TypeParameterMatcherTest"] 8d8e1c1b_ae99_1fe7_391e_4dce9556a9bc -->|defined in| 0471a2ea_34fb_90fc_b83b_eaf4cc2b794c style 8d8e1c1b_ae99_1fe7_391e_4dce9556a9bc fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/test/java/io/netty/util/internal/TypeParameterMatcherTest.java lines 68–80
@Test
public void testAbstractClass() throws Exception {
TypeParameterMatcher m = TypeParameterMatcher.find(new TypeQ(), TypeX.class, "C");
assertFalse(m.match(new Object()));
assertFalse(m.match(new A()));
assertFalse(m.match(new AA()));
assertFalse(m.match(new AAA()));
assertFalse(m.match(new B()));
assertFalse(m.match(new BB()));
assertFalse(m.match(new BBB()));
assertFalse(m.match(new C()));
assertTrue(m.match(new CC()));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testAbstractClass() do?
testAbstractClass() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/internal/TypeParameterMatcherTest.java.
Where is testAbstractClass() defined?
testAbstractClass() is defined in common/src/test/java/io/netty/util/internal/TypeParameterMatcherTest.java at line 68.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free