testSetBoolean() — netty Function Reference
Architecture documentation for the testSetBoolean() function in FixedCompositeByteBufTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 2918ac41_ad2b_9cf5_11d0_3cfcaa0ccc49["testSetBoolean()"] 0580ab1c_4068_2dfc_70ec_23a7d5440016["FixedCompositeByteBufTest"] 2918ac41_ad2b_9cf5_11d0_3cfcaa0ccc49 -->|defined in| 0580ab1c_4068_2dfc_70ec_23a7d5440016 style 2918ac41_ad2b_9cf5_11d0_3cfcaa0ccc49 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/test/java/io/netty/buffer/FixedCompositeByteBufTest.java lines 44–57
@Test
public void testSetBoolean() {
final ByteBuf buf = newBuffer(wrappedBuffer(new byte[8]));
try {
assertThrows(ReadOnlyBufferException.class, new Executable() {
@Override
public void execute() {
buf.setBoolean(0, true);
}
});
} finally {
buf.release();
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testSetBoolean() do?
testSetBoolean() is a function in the netty codebase, defined in buffer/src/test/java/io/netty/buffer/FixedCompositeByteBufTest.java.
Where is testSetBoolean() defined?
testSetBoolean() is defined in buffer/src/test/java/io/netty/buffer/FixedCompositeByteBufTest.java at line 44.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free