mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-08-15 18:14:08 +00:00
20 lines
445 B
Julia
20 lines
445 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
|
|
output = solve_elasticity_interface!()
|
|
@fact output => 0
|
|
end
|