public void testFireVetoableChangeStringintint_listener_property_Invalid()
throws PropertyVetoException {
MockSource source = new MockSource();
VetoableChangeSupport support = new VetoableChangeSupport(source);
VetoableChangeListener proxy = EventHandler.create(
VetoableChangeListener.class, source, "setText");
support.addVetoableChangeListener("label", proxy);
support.fireVetoableChange("label_invalid", 1, 2);
assertEquals("text.default", source.getText());