testFileNotFoundWithNullClassLoader() — netty Function Reference
Architecture documentation for the testFileNotFoundWithNullClassLoader() function in NativeLibraryLoaderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 8a38fdd9_2046_bbba_06e6_8c508406f22d["testFileNotFoundWithNullClassLoader()"] 9022161d_835d_6545_8d58_577531ba9962["NativeLibraryLoaderTest"] 8a38fdd9_2046_bbba_06e6_8c508406f22d -->|defined in| 9022161d_835d_6545_8d58_577531ba9962 16ab795c_038b_768e_7f5a_8ded66ddd4af["verifySuppressedException()"] 8a38fdd9_2046_bbba_06e6_8c508406f22d -->|calls| 16ab795c_038b_768e_7f5a_8ded66ddd4af style 8a38fdd9_2046_bbba_06e6_8c508406f22d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/test/java/io/netty/util/internal/NativeLibraryLoaderTest.java lines 53–62
@Test
void testFileNotFoundWithNullClassLoader() {
try {
NativeLibraryLoader.load(UUID.randomUUID().toString(), null);
fail();
} catch (UnsatisfiedLinkError error) {
assertTrue(error.getCause() instanceof FileNotFoundException);
verifySuppressedException(error, ClassNotFoundException.class);
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testFileNotFoundWithNullClassLoader() do?
testFileNotFoundWithNullClassLoader() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/internal/NativeLibraryLoaderTest.java.
Where is testFileNotFoundWithNullClassLoader() defined?
testFileNotFoundWithNullClassLoader() is defined in common/src/test/java/io/netty/util/internal/NativeLibraryLoaderTest.java at line 53.
What does testFileNotFoundWithNullClassLoader() call?
testFileNotFoundWithNullClassLoader() 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