public void testConfigurationBasic() throws IOException, KeyNotFoundException
{
InMemoryBTreeConfiguration<Integer, String> config = new InMemoryBTreeConfiguration<Integer, String>();
config.setName( "basic" );
config.setPageSize( 32 );
config.setSerializers( new IntSerializer(), new StringSerializer() );
try
{
// Create the BTree
BTree<Integer, String> btree = new InMemoryBTree<Integer, String>( config );