testFileNotFound() — netty Function Reference
Architecture documentation for the testFileNotFound() function in NativeLibraryLoaderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD cc6011d2_401b_96a6_2499_c8f40559f7ae["testFileNotFound()"] 9022161d_835d_6545_8d58_577531ba9962["NativeLibraryLoaderTest"] cc6011d2_401b_96a6_2499_c8f40559f7ae -->|defined in| 9022161d_835d_6545_8d58_577531ba9962 16ab795c_038b_768e_7f5a_8ded66ddd4af["verifySuppressedException()"] cc6011d2_401b_96a6_2499_c8f40559f7ae -->|calls| 16ab795c_038b_768e_7f5a_8ded66ddd4af style cc6011d2_401b_96a6_2499_c8f40559f7ae fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/test/java/io/netty/util/internal/NativeLibraryLoaderTest.java lines 42–51
@Test
void testFileNotFound() {
try {
NativeLibraryLoader.load(UUID.randomUUID().toString(), NativeLibraryLoaderTest.class.getClassLoader());
fail();
} catch (UnsatisfiedLinkError error) {
assertTrue(error.getCause() instanceof FileNotFoundException);
verifySuppressedException(error, UnsatisfiedLinkError.class);
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testFileNotFound() do?
testFileNotFound() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/internal/NativeLibraryLoaderTest.java.
Where is testFileNotFound() defined?
testFileNotFound() is defined in common/src/test/java/io/netty/util/internal/NativeLibraryLoaderTest.java at line 42.
What does testFileNotFound() call?
testFileNotFound() calls 1 function(s): verifySuppressedException.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free