Home / Function/ throwingNonMatchingExecutables() — netty Function Reference

throwingNonMatchingExecutables() — netty Function Reference

Architecture documentation for the throwingNonMatchingExecutables() function in EnhancedX509ExtendedTrustManagerTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  e82ba1e2_8e8c_f667_1dbb_2c8e8f2037bf["throwingNonMatchingExecutables()"]
  8a093596_7413_c971_067f_43858e578a2d["EnhancedX509ExtendedTrustManagerTest"]
  e82ba1e2_8e8c_f667_1dbb_2c8e8f2037bf -->|defined in| 8a093596_7413_c971_067f_43858e578a2d
  style e82ba1e2_8e8c_f667_1dbb_2c8e8f2037bf fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/test/java/io/netty/handler/ssl/EnhancedX509ExtendedTrustManagerTest.java lines 332–349

    static List<Arguments> throwingNonMatchingExecutables() {
        return Arrays.asList(arguments(named("checkServerTrusted", new Executable() {
            @Override
            public void execute() throws Throwable {
                NON_MATCHING_MANAGER.checkServerTrusted(new X509Certificate[] { TEST_CERT }, null);
            }
        })), arguments(named("checkServerTrusted with SSLEngine", new Executable() {
            @Override
            public void execute() throws Throwable {
                NON_MATCHING_MANAGER.checkServerTrusted(new X509Certificate[] { TEST_CERT }, null, (SSLEngine) null);
            }
        })), arguments(named("checkServerTrusted with SSLSocket", new Executable() {
            @Override
            public void execute() throws Throwable {
                NON_MATCHING_MANAGER.checkServerTrusted(new X509Certificate[] { TEST_CERT }, null, (SSLSocket) null);
            }
        })));
    }

Domain

Subdomains

Frequently Asked Questions

What does throwingNonMatchingExecutables() do?
throwingNonMatchingExecutables() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/EnhancedX509ExtendedTrustManagerTest.java.
Where is throwingNonMatchingExecutables() defined?
throwingNonMatchingExecutables() is defined in handler/src/test/java/io/netty/handler/ssl/EnhancedX509ExtendedTrustManagerTest.java at line 332.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free