121314151617181920
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); }
192021222324252627
public class ConsoleNotifierTest { @Test public void testSendMessage() throws Exception { Notifier notifier = new ConsoleNotifier(); SimpleMessage context = new SimpleMessage(); context.setText("hello world"); notifier.sendMessage(context); }