From bc2cd71f5de8ba80c22ffed621805992becd1410 Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Sat, 9 May 2026 18:46:29 +0300 Subject: [PATCH] test(quadrature): delegate runner to consolidated quadrature rule suite Replace the retired per-shape modules with the single `test_quadrature_rules.jl` entry point that mirrors the current quadrature implementation layout. - SPDX header; trim imports to `Test`, `JuliaFEM`, and `Tensors`. --- test/quadrature/runtests.jl | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/test/quadrature/runtests.jl b/test/quadrature/runtests.jl index e623697..c678898 100644 --- a/test/quadrature/runtests.jl +++ b/test/quadrature/runtests.jl @@ -1,18 +1,8 @@ -# This file is a part of JuliaFEM. -# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md +# SPDX-FileCopyrightText: 2015-2026 Jukka Aho +# SPDX-License-Identifier: MIT using Test using JuliaFEM -using StaticArrays: SVector -using Tensors: Vec +using Tensors -@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 +include("test_quadrature_rules.jl")