mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-12 06:22:00 +00:00
919186dbfb
- 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)
17 lines
348 B
Julia
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
|