From d60a086fea3efd19695082c8940a3589ee1a784e Mon Sep 17 00:00:00 2001 From: Tero Frondelius Date: Fri, 26 Jun 2015 22:04:40 +0300 Subject: [PATCH] more tests --- test/runtests.jl | 3 +-- test/test_interfaces.jl | 12 ++++++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 test/test_interfaces.jl diff --git a/test/runtests.jl b/test/runtests.jl index 002f9fa..e605e39 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -103,8 +103,7 @@ include("test_xdmf.jl") include("test_elasticity_solver.jl") include("test_model.jl") include("test_abaqus_reader.jl") - -include("test_elasticity_solver.jl") +include("test_interfaces.jl") # Keep this at the end of this file (include statements above this) @Logging.configure(level=DEBUG) diff --git a/test/test_interfaces.jl b/test/test_interfaces.jl new file mode 100644 index 0000000..0682283 --- /dev/null +++ b/test/test_interfaces.jl @@ -0,0 +1,12 @@ +# 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 + @pending +end \ No newline at end of file