We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 247d445 commit 6309808Copy full SHA for 6309808
test/runtests.jl
@@ -57,6 +57,10 @@ end
57
include("test_GMT.jl")
58
end
59
60
+@testset "Gmsh integration" begin
61
+ include("test_Gmsh.jl")
62
+end
63
+
64
@testset "Event counts" begin
65
include("test_event_counts.jl")
66
test/test_Gmsh.jl
@@ -0,0 +1,10 @@
1
+using Test
2
+using GeophysicalModelGenerator, GridapGmsh
3
4
5
+# Read a Gmsh file
6
+fname="test_files/subduction_ptatin.msh"
7
+fe_data, tag_names = import_Gmsh(fname)
8
+@test sum(fe_data.cellfields.regions) == 830
9
10
0 commit comments