assertNotResolve() — netty Function Reference
Architecture documentation for the assertNotResolve() function in SearchDomainTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 3f8fe794_028b_490d_db01_b9bba8610875["assertNotResolve()"] d5ebb464_2572_c131_f90c_00c6ead5a9ed["SearchDomainTest"] 3f8fe794_028b_490d_db01_b9bba8610875 -->|defined in| d5ebb464_2572_c131_f90c_00c6ead5a9ed 86131688_3662_670c_a00b_18504ad04a7a["testResolve()"] 86131688_3662_670c_a00b_18504ad04a7a -->|calls| 3f8fe794_028b_490d_db01_b9bba8610875 cd805f4c_e941_32ff_c642_a5d5ac9aa0bd["testMultipleSearchDomain()"] cd805f4c_e941_32ff_c642_a5d5ac9aa0bd -->|calls| 3f8fe794_028b_490d_db01_b9bba8610875 b7c1ce75_2e88_b065_ca94_d1828bbc6f17["testSearchDomainWithNdots0()"] b7c1ce75_2e88_b065_ca94_d1828bbc6f17 -->|calls| 3f8fe794_028b_490d_db01_b9bba8610875 style 3f8fe794_028b_490d_db01_b9bba8610875 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
resolver-dns/src/test/java/io/netty/resolver/dns/SearchDomainTest.java lines 252–256
private static void assertNotResolve(DnsNameResolver resolver, String inetHost) throws InterruptedException {
Future<InetAddress> fut = resolver.resolve(inetHost);
assertTrue(fut.await(10, TimeUnit.SECONDS));
assertFalse(fut.isSuccess());
}
Domain
Subdomains
Source
Frequently Asked Questions
What does assertNotResolve() do?
assertNotResolve() is a function in the netty codebase, defined in resolver-dns/src/test/java/io/netty/resolver/dns/SearchDomainTest.java.
Where is assertNotResolve() defined?
assertNotResolve() is defined in resolver-dns/src/test/java/io/netty/resolver/dns/SearchDomainTest.java at line 252.
What calls assertNotResolve()?
assertNotResolve() is called by 3 function(s): testMultipleSearchDomain, testResolve, testSearchDomainWithNdots0.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free