testMultipleResourcesWithSameContentInTheClassLoader() — netty Function Reference
Architecture documentation for the testMultipleResourcesWithSameContentInTheClassLoader() function in NativeLibraryLoaderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 977e8b08_c2ee_bc0c_3c19_10f1f257cb7f["testMultipleResourcesWithSameContentInTheClassLoader()"] 9022161d_835d_6545_8d58_577531ba9962["NativeLibraryLoaderTest"] 977e8b08_c2ee_bc0c_3c19_10f1f257cb7f -->|defined in| 9022161d_835d_6545_8d58_577531ba9962 style 977e8b08_c2ee_bc0c_3c19_10f1f257cb7f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/test/java/io/netty/util/internal/NativeLibraryLoaderTest.java lines 64–75
@Test
@EnabledOnOs(LINUX)
@EnabledIf("is_x86_64")
void testMultipleResourcesWithSameContentInTheClassLoader() throws MalformedURLException {
URL url1 = new File("src/test/data/NativeLibraryLoader/1").toURI().toURL();
URL url2 = new File("src/test/data/NativeLibraryLoader/2").toURI().toURL();
final URLClassLoader loader = new URLClassLoader(new URL[] {url1, url2});
final String resourceName = "test3";
NativeLibraryLoader.load(resourceName, loader);
assertTrue(true);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testMultipleResourcesWithSameContentInTheClassLoader() do?
testMultipleResourcesWithSameContentInTheClassLoader() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/internal/NativeLibraryLoaderTest.java.
Where is testMultipleResourcesWithSameContentInTheClassLoader() defined?
testMultipleResourcesWithSameContentInTheClassLoader() is defined in common/src/test/java/io/netty/util/internal/NativeLibraryLoaderTest.java at line 64.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free