Esempio n. 1
0
        public void FunctionsAreContiniousTest()
        {
            var bound = new ParallelepipedNearBound();

            foreach (var point in bound.CornerPoints)
            {
                var x = FunctionFactory.G(point);
                var y = FunctionFactory.Gother(point);
                Assert.AreEqual(x, y);
            }
        }