Skip to content

Commit

Permalink
Remove old tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeingold committed Sep 27, 2024
1 parent 12f008f commit c0bdd97
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/auto_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand All @@ -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),
Expand Down

0 comments on commit c0bdd97

Please sign in to comment.