testWriteCharSequenceExpand() — netty Function Reference
Architecture documentation for the testWriteCharSequenceExpand() function in AbstractByteBufTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 758d1b42_2df1_2157_77e5_93f583fb8dc3["testWriteCharSequenceExpand()"] 6540f2d1_cdad_6705_dd1d_9a24e2e53242["AbstractByteBufTest"] 758d1b42_2df1_2157_77e5_93f583fb8dc3 -->|defined in| 6540f2d1_cdad_6705_dd1d_9a24e2e53242 0aecb344_e39e_deaf_1209_66872d3a2c8a["testWriteUsAsciiCharSequenceExpand()"] 0aecb344_e39e_deaf_1209_66872d3a2c8a -->|calls| 758d1b42_2df1_2157_77e5_93f583fb8dc3 efe467e0_afce_446c_7038_4851f2ec1ec4["testWriteUtf8CharSequenceExpand()"] efe467e0_afce_446c_7038_4851f2ec1ec4 -->|calls| 758d1b42_2df1_2157_77e5_93f583fb8dc3 447b992b_ad68_c594_1475_6a4d5c4a5961["testWriteIso88591CharSequenceExpand()"] 447b992b_ad68_c594_1475_6a4d5c4a5961 -->|calls| 758d1b42_2df1_2157_77e5_93f583fb8dc3 f972a60a_992a_1802_36cd_aaa830e45cab["testWriteUtf16CharSequenceExpand()"] f972a60a_992a_1802_36cd_aaa830e45cab -->|calls| 758d1b42_2df1_2157_77e5_93f583fb8dc3 style 758d1b42_2df1_2157_77e5_93f583fb8dc3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/test/java/io/netty/buffer/AbstractByteBufTest.java lines 4806–4816
private void testWriteCharSequenceExpand(Charset charset) {
ByteBuf buf = newBuffer(1);
try {
int writerIndex = buf.capacity() - 1;
buf.writerIndex(writerIndex);
int written = buf.writeCharSequence("AB", charset);
assertEquals(writerIndex, buf.writerIndex() - written);
} finally {
buf.release();
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does testWriteCharSequenceExpand() do?
testWriteCharSequenceExpand() is a function in the netty codebase, defined in buffer/src/test/java/io/netty/buffer/AbstractByteBufTest.java.
Where is testWriteCharSequenceExpand() defined?
testWriteCharSequenceExpand() is defined in buffer/src/test/java/io/netty/buffer/AbstractByteBufTest.java at line 4806.
What calls testWriteCharSequenceExpand()?
testWriteCharSequenceExpand() is called by 4 function(s): testWriteIso88591CharSequenceExpand, testWriteUsAsciiCharSequenceExpand, testWriteUtf16CharSequenceExpand, testWriteUtf8CharSequenceExpand.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free