5354555657585960616263
/** Allocates 1 byte from a new SlabAllocator and returns it. */ private AbstractAllocator bumpedSlab() { AbstractAllocator allocator = POOL.newAllocator(new OpOrder()); allocator.allocate(1); return allocator; } @Test public void testAllocate()