コード例 #1
0
ファイル: OkBufferTest.java プロジェクト: nnanna217/okhttp
 @Test
 public void completeSegmentByteCountOnBufferWithIncompleteTailSegment() throws Exception {
   OkBuffer buffer = new OkBuffer();
   buffer.writeUtf8(repeat('a', Segment.SIZE * 4 - 10));
   assertEquals(Segment.SIZE * 3, buffer.completeSegmentByteCount());
 }
コード例 #2
0
ファイル: OkBufferTest.java プロジェクト: nnanna217/okhttp
 @Test
 public void completeSegmentByteCountOnEmptyBuffer() throws Exception {
   OkBuffer buffer = new OkBuffer();
   assertEquals(0, buffer.completeSegmentByteCount());
 }