mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-12 06:22:00 +00:00
20 lines
441 B
Julia
20 lines
441 B
Julia
# This file is a part of JuliaFEM.
|
|
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
|
|
|
|
using FactCheck
|
|
using Logging
|
|
@Logging.configure(level=DEBUG)
|
|
|
|
using JuliaFEM.interfaces: solve_elasticity_interface!
|
|
|
|
facts("test solve_elasticity_interface!") do
|
|
test = solve_elasticity_interface!()
|
|
@pending
|
|
end
|
|
|
|
|
|
facts("test interface modules") do
|
|
test = solve_elasticity_interface!()
|
|
@assert test == 0
|
|
end
|