blob: 8376371d460cc8f9b09a0249812a008ef5f0c9f6 [file] [log] [blame]
package com.gemstone.gemfire.internal.offheap;
import org.junit.experimental.categories.Category;
import com.gemstone.gemfire.test.junit.categories.UnitTest;
@Category(UnitTest.class)
public class ByteArrayMemoryChunkJUnitTest extends MemoryChunkJUnitTestBase {
@Override
protected MemoryChunk createChunk(int size) {
return new ByteArrayMemoryChunk(size);
}
}