Home / Function/ newTestParams() — netty Function Reference

newTestParams() — netty Function Reference

Architecture documentation for the newTestParams() function in SSLEngineTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  cf5c3a3a_0a4c_570a_ef20_20a5b8ddb928["newTestParams()"]
  9150c92a_2afc_b83a_c3bf_86dfac6e9d9b["SSLEngineTest"]
  cf5c3a3a_0a4c_570a_ef20_20a5b8ddb928 -->|defined in| 9150c92a_2afc_b83a_c3bf_86dfac6e9d9b
  2d7c5ff6_ca42_42ba_5062_9a8bd6811d6f["SSLEngineTestParam()"]
  cf5c3a3a_0a4c_570a_ef20_20a5b8ddb928 -->|calls| 2d7c5ff6_ca42_42ba_5062_9a8bd6811d6f
  style cf5c3a3a_0a4c_570a_ef20_20a5b8ddb928 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java lines 294–306

    protected List<SSLEngineTestParam> newTestParams() {
        List<SSLEngineTestParam> params = new ArrayList<SSLEngineTestParam>();
        for (BufferType type: BufferType.values()) {
            params.add(new SSLEngineTestParam(type, ProtocolCipherCombo.tlsv12(), false));
            params.add(new SSLEngineTestParam(type, ProtocolCipherCombo.tlsv12(), true));

            if (tlsv13Supported) {
                params.add(new SSLEngineTestParam(type, ProtocolCipherCombo.tlsv13(), false));
                params.add(new SSLEngineTestParam(type, ProtocolCipherCombo.tlsv13(), true));
            }
        }
        return params;
    }

Domain

Subdomains

Frequently Asked Questions

What does newTestParams() do?
newTestParams() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java.
Where is newTestParams() defined?
newTestParams() is defined in handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java at line 294.
What does newTestParams() call?
newTestParams() calls 1 function(s): SSLEngineTestParam.

Analyze Your Own Codebase

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

Try Supermodel Free