public void Test300Points()
        {
            var test = new RectangleLineIntersectorValidator();

            test.Init(300);
            Assert.IsTrue(test.Validate());
        }
 public void TestPerformance()
 {
     var test = new RectangleLineIntersectorValidator();
     test.RunBoth(5);
     test.RunBoth(30);
     test.RunBoth(30);
     test.RunBoth(100);
     test.RunBoth(300);
     test.RunBoth(600);
     test.RunBoth(1000);
     test.RunBoth(6000);
 }
        public void TestPerformance()
        {
            var test = new RectangleLineIntersectorValidator();

            test.RunBoth(5);
            test.RunBoth(30);
            test.RunBoth(30);
            test.RunBoth(100);
            test.RunBoth(300);
            test.RunBoth(600);
            test.RunBoth(1000);
            test.RunBoth(6000);
        }
 public void Test300Points()
 {
     var test = new RectangleLineIntersectorValidator();
     test.Init(300);
     Assert.IsTrue(test.Validate());
 }