From 2b92f5464b799787a4437d2b5c816b4dd1fd7612 Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Sat, 9 May 2026 18:39:45 +0300 Subject: [PATCH] test(topology): add topology topic runner --- test/topology/runtests.jl | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test/topology/runtests.jl diff --git a/test/topology/runtests.jl b/test/topology/runtests.jl new file mode 100644 index 0000000..cf656f4 --- /dev/null +++ b/test/topology/runtests.jl @@ -0,0 +1,21 @@ +# SPDX-FileCopyrightText: 2015-2026 Jukka Aho +# SPDX-License-Identifier: MIT + +using Test +using JuliaFEM + +@testset "Topology" begin + include("test_segments.jl") + include("test_triangles.jl") + include("test_quadrilaterals.jl") + include("test_topology_entities_tetrahedron.jl") + include("test_hexahedra.jl") + include("test_pyramids.jl") + include("test_wedges.jl") + # include("test_topology_type_extraction.jl") -- archived to + # llm/design/legacy-tests/topology/, targets the older API where + # entities carried their own topology + include("test_topological_invariance.jl") + include("test_entity_dimensions.jl") + include("test_triangle_reference_coordinates.jl") +end