public void Notifier_Skype_NotifierUnknownTarget() { var notifier = new SkypeNotifier(); notifier.AttachToSkype(); notifier.Notify( new SkypeSubcriber() { Handle = "anonymous" }, new SkypeNotifierData() { Message = "send me" }); }
public void Notifier_Skype_NotifierInvalidData() { var notifier = new SkypeNotifier(); notifier.Notify(new EmailSubcriber(), new EmailNotifierData()); }
public void Notifier_Skype_NotifierSuccessful() { var notifier = new SkypeNotifier(); notifier.AttachToSkype(); notifier.Notify( new SkypeSubcriber() { Handle = "legoslight" }, new SkypeNotifierData() { Message = "antelope - message" }); }