From 742e82c8f47d64af2a5cc288abb29905de398e34 Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Sat, 9 May 2026 18:39:16 +0300 Subject: [PATCH] test(materials): add materials topic runner --- test/materials/runtests.jl | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/materials/runtests.jl diff --git a/test/materials/runtests.jl b/test/materials/runtests.jl new file mode 100644 index 0000000..469cb2b --- /dev/null +++ b/test/materials/runtests.jl @@ -0,0 +1,18 @@ +# SPDX-FileCopyrightText: 2015-2026 Jukka Aho +# SPDX-License-Identifier: MIT + +using Test +using JuliaFEM + +@testset "Materials" begin + include("test_state_variables.jl") + include("test_orthotropic_linear_elastic.jl") + include("test_traits.jl") + include("test_global_material_cache.jl") + include("test_field_traits.jl") + include("test_plasticity_integration.jl") + include("test_j2_isotropic_plasticity.jl") + include("test_advanced_materials.jl") + include("test_cantilever_material_cache_zero_allocations.jl") + include("test_assembly_workspace_refactor.jl") +end