From d340d426acdfa8878b9b343e51ce9d46ccddd4a7 Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Sat, 9 May 2026 18:39:46 +0300 Subject: [PATCH] test(validation): add validation topic runner --- test/validation/runtests.jl | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/validation/runtests.jl diff --git a/test/validation/runtests.jl b/test/validation/runtests.jl new file mode 100644 index 0000000..aceed24 --- /dev/null +++ b/test/validation/runtests.jl @@ -0,0 +1,8 @@ +using Test +using JuliaFEM + +@testset "Validation" begin + include("test_cantilever_regression.jl") + include("test_cantilever_materials_showcase.jl") + include("test_plasticity_simple.jl") +end