basic model structure

This commit is contained in:
Jukka Aho
2015-06-20 15:32:57 +03:00
parent e891faee74
commit 97faa3fd63
2 changed files with 18 additions and 15 deletions
+12 -4
View File
@@ -1,8 +1,16 @@
using JuliaFEM
using Base.Test
function test_create_model()
m = new_model()
fn = fieldnames(m)
@assert :model in fn
@assert :nodes in fn
@assert :elements in fn
@assert :element_nodes in fn
@assert :element_gauss_points in fn
end
# write your own tests here
@test 1 == JuliaFEM.test()
@test_approx_eq 1.0 1.0
# @test 1 == JuliaFEM.test()
# @test_approx_eq 1.0 1.0