Index: BeanContextSupportTest.java =================================================================== --- BeanContextSupportTest.java (revision 478557) +++ BeanContextSupportTest.java (working copy) @@ -406,16 +406,18 @@ // BeanContextSupport sup = new BeanContextSupport(); // sup.vetoableChange(null); // } + /** * Test method propertyChange() with PropertyChangeEvent parameter. *

*/ - // public void testPropertyChangePropertyChangeEvent() { - // /** @todo: not implemented yet in the class * */ - // // Create BeanContext instance - // BeanContextSupport sup = new BeanContextSupport(); - // // sup.propertyChange(null); - // } + public void testPropertyChangePropertyChangeEvent() { + BeanContextServicesSupport s = new BeanContextServicesSupport(); + PropertyChangeSupport p= new PropertyChangeSupport(new Object()); + p.addPropertyChangeListener(s); + p.firePropertyChange(null, new Object(), new Object()); + } + /** * Test method isEmpty() with no parameters. *