try {
for (int i = 0; i < 10; i++)
nullSBTree.put(i, new ORecordId(3, OClusterPositionFactory.INSTANCE.valueOf(i)));
OIdentifiable identifiable = nullSBTree.get(null);
Assert.assertNull(identifiable);
nullSBTree.put(null, new ORecordId(10, OClusterPositionFactory.INSTANCE.valueOf(1000)));
identifiable = nullSBTree.get(null);
Assert.assertEquals(identifiable, new ORecordId(10, OClusterPositionFactory.INSTANCE.valueOf(1000)));
OIdentifiable removed = nullSBTree.remove(5);
Assert.assertEquals(removed, new ORecordId(3, OClusterPositionFactory.INSTANCE.valueOf(5)));
removed = nullSBTree.remove(null);
Assert.assertEquals(removed, new ORecordId(10, OClusterPositionFactory.INSTANCE.valueOf(1000)));