public void Show_methods_return_false_if_ni_is_null()
 {
     Notifier notifier = new Notifier();
     Assert.IsFalse(notifier.ShowNotification(null));
     Assert.IsFalse(notifier.ShowAuthError());
     Assert.IsFalse(notifier.ShowDefault());
 }
 public void ShowNotification_throws_exception_if_argument_is_null()
 {
     Notifier notifier = new Notifier();
     notifier.InitNotifier();
     notifier.ShowNotification(null);
 }