Two tentative last asserts in the test

This commit is contained in:
Cruz Julian Bishop 2012-06-29 13:37:41 +10:00
parent 557f1c85df
commit b11d4fa37a

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));
} }
} }