assertEquals(person, orderedAttribute.set(0, person));
assertEquals(person, orderedAttribute.get(0));
}
public void testSet_unorder_ExistValue() {
Person person = Person.getInstance();
unorderedAttribute.add(person);
try {
unorderedAttribute.set(0, person);
fail("Should throw IllegalStateException.");
} catch (IllegalStateException e) {