Package org.beangle.notification.notifiers.console

Source Code of org.beangle.notification.notifiers.console.ConsoleNotifierTest

/* Copyright c 2005-2012.
* Licensed under GNU  LESSER General Public License, Version 3.
* http://www.gnu.org/licenses
*/
package org.beangle.notification.notifiers.console;

import org.beangle.notification.Message;
import org.beangle.notification.Notifier;
import org.beangle.notification.SimpleMessage;
import org.testng.annotations.Test;

public class ConsoleNotifierTest {

  @Test
  public void testSendMessage() throws Exception {
    Notifier<Message> notifier = new ConsoleNotifier();
    SimpleMessage context = new SimpleMessage();
    context.setText("hello world");
    notifier.deliver(context);
  }
}
TOP

Related Classes of org.beangle.notification.notifiers.console.ConsoleNotifierTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.