"MockUnsolicitedNotification: naming exception");
String[] referral = { "Red", "Blue", };
UnsolicitedNotification notification = new MockUnsolicitedNotification(
referral, exception);
Object src = "source";
UnsolicitedNotificationEvent event = new UnsolicitedNotificationEvent(
src, notification);
assertEquals(src, event.getSource());
assertEquals(notification, event.getNotification());
assertSame(notification, event.getNotification());
assertSame(src, event.getSource());
}