From 20729506d3952f99cd78e4db3489ad8f2d1f868f Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Mon, 15 Dec 2025 07:43:28 +0200 Subject: [PATCH] test(dofs): add runtests.jl Test suite organizer for DOF system module. Includes field unification and DOF system tests. --- test/dofs/runtests.jl | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test/dofs/runtests.jl diff --git a/test/dofs/runtests.jl b/test/dofs/runtests.jl new file mode 100644 index 0000000..53a0516 --- /dev/null +++ b/test/dofs/runtests.jl @@ -0,0 +1,23 @@ +# This file is a part of JuliaFEM. +# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE + +""" +DOF System Test Suite + +Runs all tests for the DOF (Degree of Freedom) system. + +Usage: + julia --project=. test/dofs/runtests.jl +""" + +using Test +using JuliaFEM +using Tensors + +# All DOF types and functions are in flat JuliaFEM namespace + +@testset "DOF System Tests" begin + @testset "Field Type Unification" begin + include("test_field_unification.jl") + end +end