Skip to content

Commit 5de599c

Browse files
committed
more testing
1 parent beca8ab commit 5de599c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/runtests.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ using GeometryTypes
8787
m3 = @test_nowarn GLNormalMesh(sdf, MarchingTetrahedra())
8888
@test vertices(m1) == vertices(m2) == vertices(m3)
8989
@test faces(m1) == faces(m2) == faces(m3)
90+
91+
m4 = @test_warn "is deprecated" GLNormalMesh(sdf.data, 0.5)
92+
m5 = @test_nowarn GLNormalMesh(sdf.data, MarchingTetrahedra(0.5))
93+
@test vertices(m4) == vertices(m5)
94+
@test faces(m4) == faces(m5)
9095
end
9196
end
9297
end

0 commit comments

Comments
 (0)