Exemplo n.º 1
0
 public void Equals_Object_ReturnsExpected(CommandID commandId, object other, bool expected)
 {
     Assert.Equal(expected, commandId.Equals(other));
     if (other is CommandID)
     {
         Assert.Equal(expected, commandId.GetHashCode().Equals(other.GetHashCode()));
     }
 }