public void GetHashCode_InvokeMultipleTimes_ReturnsSame()
        {
            var attribute = new LookupBindingPropertiesAttribute();

            Assert.Equal(attribute.GetHashCode(), attribute.GetHashCode());
        }
 public void Equals_Object_ReturnsExpected(LookupBindingPropertiesAttribute attribute, object other, bool expected)
 {
     Assert.Equal(expected, attribute.Equals(other));
 }