2015-06-26 22:04:40 +03:00
|
|
|
# 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!
|
|
|
|
|
|
2015-06-27 18:58:46 +03:00
|
|
|
#facts("test solve_elasticity_interface!") do
|
|
|
|
|
# test = solve_elasticity_interface!()
|
|
|
|
|
# @pending
|
|
|
|
|
#end
|
2015-06-27 00:22:41 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
facts("test interface modules") do
|
2015-06-27 18:58:46 +03:00
|
|
|
output = solve_elasticity_interface!()
|
|
|
|
|
@fact output => 0
|
2015-06-27 00:22:41 +03:00
|
|
|
end
|