assertEquals("Initial container is not empty", 0, xCont.getCount());
xCont.insertByIndex(0, prop1);
PropertyValue[]ret = (PropertyValue[])xCont.getByIndex(0);
assertEquals(prop1[0].Name, ret[0].Name);
assertEquals(prop1[0].Value, ret[0].Value);
xCont.replaceByIndex(0, prop2);
ret = (PropertyValue[])xCont.getByIndex(0);
assertEquals(prop2[0].Name, ret[0].Name);
assertEquals(prop2[0].Value, ret[0].Value);
xCont.removeByIndex(0);
assertTrue("Could not remove PropertyValue.",