diff --git a/test/physics/runtests.jl b/test/physics/runtests.jl index 80c5bc9..aeb7d7c 100644 --- a/test/physics/runtests.jl +++ b/test/physics/runtests.jl @@ -1,16 +1,6 @@ -# This file is a part of JuliaFEM. -# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md - -""" -Physics module test suite. - -Run all physics-related unit tests. -""" - using Test +using JuliaFEM -@testset "Physics Module" begin - include("test_types.jl") - include("test_boundary_conditions.jl") - include("test_validation.jl") +@testset "Physics" begin + include("test_strain.jl") end