From 60e0a8da681b758d22e288dee019403fcdb11334 Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Mon, 15 Dec 2025 07:43:42 +0200 Subject: [PATCH] test(quadrature): add runtests.jl Test suite organizer for quadrature module. Includes accuracy, API, and element-specific quadrature tests. --- test/quadrature/runtests.jl | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/quadrature/runtests.jl diff --git a/test/quadrature/runtests.jl b/test/quadrature/runtests.jl new file mode 100644 index 0000000..e623697 --- /dev/null +++ b/test/quadrature/runtests.jl @@ -0,0 +1,18 @@ +# This file is a part of JuliaFEM. +# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md + +using Test +using JuliaFEM +using StaticArrays: SVector +using Tensors: Vec + +@testset "Quadrature Module" begin + include("test_api.jl") + include("test_triangles.jl") + include("test_tetrahedra.jl") + include("test_tensor_products.jl") + include("test_wedges.jl") + include("test_pyramids.jl") + include("test_accuracy.jl") + include("test_legacy_api.jl") +end