From c0124224b826c6e203a02589a750ebd0ffce793c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olli=20V=C3=A4in=C3=B6l=C3=A4?= Date: Thu, 3 Dec 2015 16:57:45 +0200 Subject: [PATCH] added one more test for reading abaqus --- test/test_api.jl | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/test/test_api.jl b/test/test_api.jl index eb3c4bd..0332db0 100644 --- a/test/test_api.jl +++ b/test/test_api.jl @@ -82,6 +82,17 @@ function test_piston_8789() @test length(keys(model.elements)) == 37331 @test length(keys(model.nodes)) == 8789 end -# test_basic() -test_piston_8789() + +#function test_piston_107168() +# abaqus_input = open(parse_abaqus, "./geometry/piston/piston_107168_P2.inp") +# +# model = Model("Piston Calculation", abaqus_input) +# @test length(keys(model.elsets)) == 3 +# @test length(keys(model.nsets)) == 1 +# @test length(keys(model.elements)) == 65948 +# @test length(keys(model.nodes)) == 107168 +#end + +#test_piston_107168() + end