Files
JuliaFEM.jl/test/test_fields.jl
T

16 lines
247 B
Julia
Raw Normal View History

2015-10-30 12:40:56 +02:00
# This file is a part of JuliaFEM.
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
2015-11-01 18:44:50 +02:00
module FieldTests
2015-10-30 12:40:56 +02:00
2015-11-01 18:44:50 +02:00
using JuliaFEM.Test
2015-10-30 12:40:56 +02:00
2015-11-30 23:00:21 +02:00
using JuliaFEM.Core: Field
2015-10-30 12:40:56 +02:00
function test_create_field()
f = Field(1.0)
2015-10-30 12:40:56 +02:00
end
end