testValidDomainNameUmlautLength() — netty Function Reference
Architecture documentation for the testValidDomainNameUmlautLength() function in AbstractDnsRecordTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 583e75a0_28cd_2e34_e6f4_8093c6343cdc["testValidDomainNameUmlautLength()"] b7f4973a_b308_2c2d_c027_e761421b848b["AbstractDnsRecordTest"] 583e75a0_28cd_2e34_e6f4_8093c6343cdc -->|defined in| b7f4973a_b308_2c2d_c027_e761421b848b style 583e75a0_28cd_2e34_e6f4_8093c6343cdc fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-dns/src/test/java/io/netty/handler/codec/dns/AbstractDnsRecordTest.java lines 65–74
@Test
public void testValidDomainNameUmlautLength() {
final String name = "äaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
assertThrows(IllegalArgumentException.class, new Executable() {
@Override
public void execute() {
new AbstractDnsRecord(name, DnsRecordType.A, 0) { };
}
});
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testValidDomainNameUmlautLength() do?
testValidDomainNameUmlautLength() is a function in the netty codebase, defined in codec-dns/src/test/java/io/netty/handler/codec/dns/AbstractDnsRecordTest.java.
Where is testValidDomainNameUmlautLength() defined?
testValidDomainNameUmlautLength() is defined in codec-dns/src/test/java/io/netty/handler/codec/dns/AbstractDnsRecordTest.java at line 65.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free