Files
JuliaFEM.jl/test/physics/runtests.jl
T
Jukka Aho 919186dbfb test(physics): Add physics module test suite runner
- Create unified test runner for physics module
- Include test_types.jl for type construction tests
- Include test_boundary_conditions.jl for BC method tests
- Include test_validation.jl for validation tests
- Total: 60 tests passing across 15 test sets
- Test coverage: 41% (264 test lines / 646 implementation lines)
2025-11-18 16:08:36 +02:00

17 lines
348 B
Julia

# 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
@testset "Physics Module" begin
include("test_types.jl")
include("test_boundary_conditions.jl")
include("test_validation.jl")
end