Home / Function/ testWithNullFingerprint() — netty Function Reference

testWithNullFingerprint() — netty Function Reference

Architecture documentation for the testWithNullFingerprint() function in FingerprintTrustManagerFactoryTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  a549ab5e_f21c_49a4_9301_c5cf6c8f5713["testWithNullFingerprint()"]
  9becb15b_a654_ff83_4d42_ffdcccac581c["FingerprintTrustManagerFactoryTest"]
  a549ab5e_f21c_49a4_9301_c5cf6c8f5713 -->|defined in| 9becb15b_a654_ff83_4d42_ffdcccac581c
  style a549ab5e_f21c_49a4_9301_c5cf6c8f5713 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/test/java/io/netty/handler/ssl/util/FingerprintTrustManagerFactoryTest.java lines 84–95

    @Test
    public void testWithNullFingerprint() {
        assertThrows(IllegalArgumentException.class, new Executable() {
            @Override
            public void execute() {
                FingerprintTrustManagerFactory
                        .builder("SHA-256")
                        .fingerprints(FIRST_CERT_SHA256_FINGERPRINT, null)
                        .build();
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

What does testWithNullFingerprint() do?
testWithNullFingerprint() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/util/FingerprintTrustManagerFactoryTest.java.
Where is testWithNullFingerprint() defined?
testWithNullFingerprint() is defined in handler/src/test/java/io/netty/handler/ssl/util/FingerprintTrustManagerFactoryTest.java at line 84.

Analyze Your Own Codebase

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

Try Supermodel Free