diff --git a/test/auto_tests.jl b/test/auto_tests.jl index 076acd01..aa254f3f 100644 --- a/test/auto_tests.jl +++ b/test/auto_tests.jl @@ -83,7 +83,6 @@ end # Test Geometries ball2d(T) = Ball(origin2d(T), T(2.0)) ball3d(T) = Ball(origin3d(T), T(2.0)) - bezier(T) = BezierCurve([Point(cos(t), sin(t), 0) for t in T(0):T(0.1):T(2π)]) box1d(T) = Box(Point(T(-1)), Point(T(1))) box2d(T) = Box(Point(T(-1), T(-1)), Point(T(1), T(1))) box3d(T) = Box(Point(T(-1), T(-1), T(-1)), Point(T(1), T(1), T(-1))) @@ -102,7 +101,6 @@ end # Name, T type, example, integral,line,surface,volume, GaussLegendre,GaussKronrod,HAdaptiveCubature SupportItem("Ball{2,$T}", T, ball2d(T), 1, 0, 1, 0, 1, 1, 1), SupportItem("Ball{3,$T}", T, ball3d(T), 1, 0, 0, 1, 1, 0, 1), - SupportItem("BezierCurve{$T}", T, bezier(T), 1, 1, 0, 0, 1, 1, 1), SupportItem("Box{1,$T}", T, box1d(T), 1, 1, 0, 0, 1, 1, 1), SupportItem("Box{2,$T}", T, box2d(T), 1, 0, 1, 0, 1, 1, 1), SupportItem("Box{3,$T}", T, box3d(T), 1, 0, 0, 1, 1, 0, 1),