public void testFireVetoableChangeStringbooleanboolean_property_twoListeners()
throws PropertyVetoException {
MockSource source = new MockSource();
VetoableChangeSupport support = new VetoableChangeSupport(source);
VetoableChangeListener proxy = EventHandler.create(
VetoableChangeListener.class, source, "setText");
VetoableChangeListener proxy2 = EventHandler.create(
VetoableChangeListener.class, source, "increaseTop");
support.addVetoableChangeListener("label", proxy);
support.addVetoableChangeListener("label", proxy2);
support.fireVetoableChange("label", true, false);