Skip to content

Commit 8b8ff28

Browse files
committed
Temp disable some Analytical tests
1 parent 4217d11 commit 8b8ff28

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/utils.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ end
2222
@testitem "DifferentiationMethod" setup=[Setup] begin
2323
using MeshIntegrals: _has_analytical, _default_method, _guarantee_analytical
2424

25+
#=
2526
# Test geometries
2627
sphere = Sphere(Point(0, 0, 0), 1.0)
2728
triangle = Triangle(Point(0, 0, 0), Point(0, 1, 0), Point(1, 0, 0))
@@ -33,16 +34,19 @@ end
3334
# _has_analytical of types
3435
@test _has_analytical(Meshes.Sphere) == false
3536
@test _has_analytical(Meshes.Triangle) == true
37+
=#
3638

3739
# _default_method
3840
@test _default_method(Meshes.Sphere) isa FiniteDifference
3941
@test _default_method(sphere) isa FiniteDifference
4042
@test _default_method(Meshes.Triangle) isa Analytical
4143
@test _default_method(triangle) isa Analytical
4244

45+
#=
4346
# _guarantee_analytical
4447
@test _guarantee_analytical(Meshes.Triangle, Analytical()) === nothing
4548
@test_throws "Analytical" _guarantee_analytical(Meshes.Triangle, FiniteDifference())
49+
=#
4650

4751
# FiniteDifference
4852
@test FiniteDifference().ε 1e-6

0 commit comments

Comments
 (0)