nonStandardSettingBoundCheck() — netty Function Reference
Architecture documentation for the nonStandardSettingBoundCheck() function in Http2SettingsTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD a9c13979_5ca9_b7a3_da99_3e63fc35c725["nonStandardSettingBoundCheck()"] 910ec026_5946_ddbf_7e19_bbbdae11da3a["Http2SettingsTest"] a9c13979_5ca9_b7a3_da99_3e63fc35c725 -->|defined in| 910ec026_5946_ddbf_7e19_bbbdae11da3a style a9c13979_5ca9_b7a3_da99_3e63fc35c725 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java lines 271–281
@ParameterizedTest(name = "{displayName} [{index}] value={0}")
@ValueSource(longs = {MIN_VALUE, Integer.MIN_VALUE, -1L, MAX_UNSIGNED_INT + 1L, MAX_VALUE})
public void nonStandardSettingBoundCheck(final long value) {
final char key = 0;
assertThrows(IllegalArgumentException.class, new Executable() {
@Override
public void execute() {
settings.put(key, (Long) value);
}
});
}
Domain
Subdomains
Source
Frequently Asked Questions
What does nonStandardSettingBoundCheck() do?
nonStandardSettingBoundCheck() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java.
Where is nonStandardSettingBoundCheck() defined?
nonStandardSettingBoundCheck() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java at line 271.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free