HashMap myHashMap = new HashMap();
for (int i = 0; i < 100; i++)
myHashMap.put(objArray2[i], objArray[i]);
Collection values = myHashMap.values();
new Support_UnmodifiableCollectionTest(
"Test Returned Collection From HashMap.values()", values)
.runTest();
values.remove(new Integer(0));
assertTrue(
"Removing from the values collection should remove from the original map",