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())); } }