*/
public void testRemovePropertyChangeListener_null_null() {
PropertyEditorSupport support = new PropertyEditorSupport();
support.addPropertyChangeListener(null);
try {
support.firePropertyChange();
fail("Should throw NullPointerException.");
} catch (NullPointerException e) {
// expected
}