TestScenario Type — netty Architecture
Architecture documentation for the TestScenario type/interface in JdkDelegatingPrivateKeyMethodTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 08f5be41_4700_92d3_0a8b_cce37b7fcd37["TestScenario"] 5573b2bd_79a7_f28c_5ebe_732d956afd9a["JdkDelegatingPrivateKeyMethodTest.java"] 08f5be41_4700_92d3_0a8b_cce37b7fcd37 -->|defined in| 5573b2bd_79a7_f28c_5ebe_732d956afd9a style 08f5be41_4700_92d3_0a8b_cce37b7fcd37 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/test/java/io/netty/handler/ssl/JdkDelegatingPrivateKeyMethodTest.java lines 113–132
public enum TestScenario {
SERVER_ALTERNATIVE_CLIENT_STANDARD("Server Alternative + Client Standard", true, false),
SERVER_STANDARD_CLIENT_ALTERNATIVE("Server Standard + Client Alternative", false, true),
BOTH_ALTERNATIVE("Both Alternative", true, true);
final String description;
final boolean serverUsesAlternativeKey;
final boolean clientUsesAlternativeKey;
TestScenario(String description, boolean serverUsesAlternativeKey, boolean clientUsesAlternativeKey) {
this.description = description;
this.serverUsesAlternativeKey = serverUsesAlternativeKey;
this.clientUsesAlternativeKey = clientUsesAlternativeKey;
}
@Override
public String toString() {
return description;
}
}
Source
Frequently Asked Questions
What is the TestScenario type?
TestScenario is a type/interface in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/JdkDelegatingPrivateKeyMethodTest.java.
Where is TestScenario defined?
TestScenario is defined in handler/src/test/java/io/netty/handler/ssl/JdkDelegatingPrivateKeyMethodTest.java at line 113.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free