mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-26 11:51:31 +00:00
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
|