Example #1
0
 public bool Equals(TestRunEvent other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other._test, _test) && Equals(other._state, _state) && other.Completed.Equals(Completed));
 }
Example #2
0
 public bool Equals(TestRunEvent other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other._test, _test) && Equals(other._state, _state) && other.Completed.Equals(Completed);
 }
Example #3
0
 public void Handle(TestRunEvent message)
 {
     UpdateQueueMessage();
 }