Files
JuliaFEM.jl/test/dofs/runtests.jl
T
Jukka Aho f332fe9ad1 test(dofs): run multifield and facet-map integration suite
The DOF runner now exercises the type-stable handler path end-to-end (multi-field
templates, facet orientation maps, and higher-order hex facets) instead of the
retired field-unification stub.

- Replace `test_field_unification.jl` with global ranges, multifield wiring, and
  facet-map coverage across tet/wedge/pyramid/tet10/hex20 shapes.
- Drop the unused `Tensors` import and the old header docstring.
2026-05-09 18:44:49 +03:00

17 lines
573 B
Julia

using Test
using JuliaFEM
@testset "DOF system" begin
# End-to-end multi-field exercise: DOFSet -> Element template ->
# DOFHandler -> DOFConnectivity -> field_dof_range / element_dofs.
include("test_global_field_ranges.jl")
include("test_multifield_dof_system.jl")
include("test_hex8_face_dofs.jl")
include("test_tet4_facet_maps.jl")
include("test_wedge6_facet_maps.jl")
include("test_pyr5_facet_maps.jl")
include("test_tet10_facet_maps.jl")
include("test_hex20_facet_maps.jl")
include("test_multicomponent_facet_dofs.jl")
end