public void Equals_ColorPointDoesNotEqualDifferentColorPoint()
        {
            // Arrange
            ColorPoint cp1      = new ColorPoint(1, 2, Color.Red);
            ColorPoint cp2      = new ColorPoint(1, 2, Color.Blue);
            bool       expected = false;

            // Act
            bool actual = cp1.Equals(cp2);

            // Assert
            Assert.Equal(expected, actual);
        }