* others from being notified.
*/
@Test
public void notification_error()
{
RegistryShutdownListener l1 = newListener();
RegistryShutdownListener l2 = newListener();
RegistryShutdownListener l3 = newListener();
Log log = newLog();
Throwable t = new RuntimeException("Shutdown failure.");
l1.registryDidShutdown();
l2.registryDidShutdown();
setThrowable(t);
log.error(contains("Shutdown failure."), same(t));
l3.registryDidShutdown();
replay();
RegistryShutdownHubImpl hub = new RegistryShutdownHubImpl(log);