* Creates a 2 level depth tree of full pages
*/
private BTree<Integer, String> createTwoLevelBTreeFullLeaves() throws IOException
{
BTree<Integer, String> btree = BTreeFactory.createInMemoryBTree( "test", new IntSerializer(),
new StringSerializer() );
btree.setPageSize( 4 );
// Create a tree with 5 children containing 4 elements each. The tree is full.
int[] keys = new int[]
{ 1, 2, 5, 6, 3, 4, 9, 10, 7, 8, 13, 14, 11, 12, 17, 18, 15, 16, 19, 20 };