Exemplo n.º 1
0
 public void EqualsSameEmailAddressesShouldReturnTrue()
 {
     var comparer = new EmailBatchNotificationDispatcher.EmailEqComparer();
     Assert.IsTrue(comparer.Equals(GetNotifiable1(), GetNotifiable2()));
 }
Exemplo n.º 2
0
 public void EqualsDifferentEmailAddressesShouldReturnFalse()
 {
     var comparer = new EmailBatchNotificationDispatcher.EmailEqComparer();
     Assert.IsFalse(comparer.Equals(GetNotifiable1(), GetNotifiable3()));
 }