public void EqualsNullTest() { // arrange ColorCollection target; bool actual; target = new ColorCollection(); // act actual = target.Equals(null); // assert actual.Should().BeFalse(); }
public void EqualsObjectTest() { // arrange ColorCollection target; object other; bool actual; target = new ColorCollection(); other = target; // act actual = target.Equals(other); // assert actual.Should().BeTrue(); }