use of org.apache.jena.tdb.base.buffer.PtrBuffer in project jena by apache.
the class TestPtrBuffer method ptrbuffer10.
@Test(expected = BufferException.class)
public void ptrbuffer10() {
PtrBuffer pb = make(4, 5);
contains(pb, 2, 4, 6, 8);
pb.shiftUp(4);
}
use of org.apache.jena.tdb.base.buffer.PtrBuffer in project jena by apache.
the class TestPtrBuffer method ptrbuffer01.
// Testing the test framework!
@Test
public void ptrbuffer01() {
PtrBuffer pb = make(4);
contains(pb, 2, 4, 6, 8);
}
Aggregations