Two tentative last asserts in the test

This commit is contained in:
Cruz Julian Bishop 2012-06-29 13:37:41 +10:00 committed by Trustin Lee
parent 73a76bfe63
commit 0f6c3137f6

View File

@ -109,6 +109,8 @@ public abstract class AbstractCompositeChannelBufferTest extends
ByteBuf _buf = buf.getBufferFor(index++); ByteBuf _buf = buf.getBufferFor(index++);
assertNotNull(_buf); assertNotNull(_buf);
assertTrue(_buf.capacity() > 0); assertTrue(_buf.capacity() > 0);
assertNotNull(_buf.getByte(0));
assertNotNull(_buf.getByte(_buf.readableBytes() - 1));
} }
} }