Exemplo n.º 1
0
        public void TestRightTriangle(int x1, int y1, int x2, int y2, int[] ExPoints)
        {
            RightTriangle Actual      = new RightTriangle();
            bool          ActualPoint = Actual.CheckForMatches(x1, y1, x2, y2, 0, ExPoints);
            bool          Expected    = true;

            Assert.AreEqual(Expected, ActualPoint);
        }