From 8adfb0802f892bf40704be4c6943e1a520df9886 Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Mon, 15 Dec 2025 07:43:23 +0200 Subject: [PATCH] test(basis): add runtests.jl Test suite organizer for basis module. Includes all basis function tests: partition of unity, derivatives, interpolation, type stability, numerical accuracy, etc. --- test/basis/runtests.jl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 test/basis/runtests.jl diff --git a/test/basis/runtests.jl b/test/basis/runtests.jl new file mode 100644 index 0000000..044786f --- /dev/null +++ b/test/basis/runtests.jl @@ -0,0 +1,14 @@ +# Test suite for basis functions module +using Test + +@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_kronecker_delta.jl") + include("test_type_stability.jl") + include("test_numerical_accuracy.jl") + include("test_gradient_properties.jl") +end