Little bit more testing

This commit is contained in:
Cruz Julian Bishop 2012-06-29 13:35:14 +10:00 committed by Trustin Lee
parent 052f8be504
commit 73a76bfe63

View File

@ -106,7 +106,9 @@ public abstract class AbstractCompositeChannelBufferTest extends
byte index = 0;
while (index < buf.capacity()) {
assertNotNull(buf.getBufferFor(index++));
ByteBuf _buf = buf.getBufferFor(index++);
assertNotNull(_buf);
assertTrue(_buf.capacity() > 0);
}
}