* Testa o envio de uma mensagem de mudança de atributo para clientes conectados
*/
@Test
public void sendAttributeChangedMessage() {
JMXConfig config = Beans.getReference(JMXConfig.class);
// Obtém o servidor MBean onde anexaremos um listener para a notificação
MBeanServer server = ManagementFactory.getPlatformMBeanServer();
NotificationManager notificationManager = Beans.getReference(NotificationManager.class);
MBeanManager mBeanManager = Beans.getReference(MBeanManager.class);
// Aqui obtemos o MBean de notificações já registrado pelo bootstrap
StringBuffer notificationMBeanName = new StringBuffer()
.append(config.getNotificationDomain() != null ? config.getNotificationDomain()
: "br.gov.frameworkdemoiselle.jmx").append(":name=").append(config.getNotificationMBeanName());
ObjectInstance instance = mBeanManager.findMBeanInstance(notificationMBeanName.toString());
// StringBuffer vazio
StringBuffer notificationBuffer = new StringBuffer();