public void testMultiplePut() throws Exception
{
int i = 0;
for(i = table.length - 1; i >= 0; i--)
{
bm.put(new Text(table[i]), new VIntWritable(i));
}
for(i = table.length - 1; i >= 0; i--)
{
bm.put(new Text(table[i]), new VIntWritable(i));
}
Assert.assertEquals(table.length, bm.size());
for(i=0; i < table.length; i++)
{
bm.getKey(i, wObj);