String propName = "property name";
Object oldValue = new Integer(1);
Object newValue = new Integer(5);
support.addVetoableChangeListener(propName, l1);
support.addVetoableChangeListener("xxx", l2);
l1.clearLastEvent();
l2.clearLastEvent();
support.fireVetoableChange(propName, oldValue, newValue);
assertEquals(propName, l1.lastEvent.getPropertyName());
assertSame(oldValue, l1.lastEvent.getOldValue());