public void testAddNotificationListener()
throws Exception
{
NotificationBroadcasterSupport broadcaster = new NotificationBroadcasterSupport();
broadcaster.addNotificationListener(new Listener(), null, null);
broadcaster.addNotificationListener(new Listener(), new NotificationFilterSupport(), null);
broadcaster.addNotificationListener(new Listener(), null, new Object());
broadcaster.addNotificationListener(new Listener(), new NotificationFilterSupport(), new Object());
}