18192021222324252627
*/ public class ConsoleNotifierTest { @Test public void testSendMessage() throws Exception { Notifier notifier = new ConsoleNotifier(); SimpleMessage context = new SimpleMessage(); context.setText("hello world"); notifier.sendMessage(context); }