@Test
public void sendAttributeChangeNotification() {
Notification n = new DefaultNotification( new AttributeChangeMessage("Test Message", "attribute", String.class, "old", "new") );
manager.sendNotification(n);
DummyNotificationListener listener = Beans.getReference(DummyNotificationListener.class);
Assert.assertEquals("Test Message - attribute", listener.getMessage());
}