server.addNotificationListener(broadcasterName, listenerName1, null, null);
// Add the listener to the delegate
ObjectName delegateName =
new ObjectName("JMImplementation:type=MBeanServerDelegate");
server.addNotificationListener(delegateName,listenerName1, null, null);
// Test we get a notification from the broadcaster
broadcaster.doSomething();
assertEquals(1, listener1.count);
assertEquals(broadcasterName, listener1.source);