From 1e1a08d4db48a5174c24620873b405ff9f6507da Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Sat, 9 May 2026 18:41:05 +0300 Subject: [PATCH] test(basis): extend runner for Piola and quadrature hooks Import `JuliaFEM` in the topic runner and include new Piola/Nedelec, integration-basis quadrature, and basis-description regressions. - Reorder derivative/type-stability includes after adding coverage files. --- test/basis/runtests.jl | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/test/basis/runtests.jl b/test/basis/runtests.jl index 044786f..473da3d 100644 --- a/test/basis/runtests.jl +++ b/test/basis/runtests.jl @@ -1,14 +1,17 @@ -# Test suite for basis functions module using Test +using JuliaFEM @testset "Basis Functions" begin include("test_partition_of_unity.jl") include("test_svector_returns.jl") - include("test_derivatives.jl") include("test_interpolation.jl") - include("test_all_elements.jl") + include("test_derivatives.jl") include("test_kronecker_delta.jl") - include("test_type_stability.jl") - include("test_numerical_accuracy.jl") include("test_gradient_properties.jl") + include("test_numerical_accuracy.jl") + include("test_type_stability.jl") + include("test_all_elements.jl") + include("test_piola_nedelec.jl") + include("test_integration_basis_quadrature.jl") + include("test_basis_description.jl") end