Accord.Tests.PointTest.InequalityOperatorTest C# (CSharp) Method

InequalityOperatorTest() private method

private InequalityOperatorTest ( float x1, float y1, float x2, float y2, bool areNotEqual ) : void
x1 float
y1 float
x2 float
y2 float
areNotEqual bool
return void
        public void InequalityOperatorTest( float x1, float y1, float x2, float y2, bool areNotEqual )
        {
            Point point1 = new Point( x1, y1 );
            Point point2 = new Point( x2, y2 );

            Assert.AreEqual( point1 != point2, areNotEqual );
        }
    }