Little bit more testing

This commit is contained in:
Cruz Julian Bishop 2012-06-29 13:35:14 +10:00
parent 3d9be81377
commit 557f1c85df

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