* Test that a BTree which forbid duplicate values does not accept them
*/
@Test(expected = DuplicateValueNotAllowedException.class)
public void testBTreeForbidDups() throws IOException, BTreeAlreadyManagedException
{
BTree<Long, String> singleValueBtree = recordManager1.addBTree( "test2", new LongSerializer(),
new StringSerializer(), BTree.FORBID_DUPLICATES );
for ( long i = 0; i < 64; i++ )
{
singleValueBtree.insert( i, Long.toString( i ) );