public void alloc5() throws Exception
{
// slower because of no pooling.
ByteBufferPool p = new ByteBufferPool( 1024, 0, 1, 0, 0 );
for (int i = 0; i < 100000; i++)
p.release( p.alloc( null ) );
assertEquals( 0, p.used() );
}
/** @throws Exception */
@Test