public void SutDoesNotEqualAnonymousObject() { var sut = new CurrentPropertyExistsSpecification(); var anonymous = new object(); var actual = sut.Equals(anonymous); Assert.False(actual); }
public void SutEqualsOther() { var sut = new CurrentPropertyExistsSpecification(); var other = new CurrentPropertyExistsSpecification(); var actual = sut.Equals(other); Assert.True(actual); }