Files
JuliaFEM.jl/test/test_fields.jl
T

17 lines
257 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
using JuliaFEM
2015-11-01 18:44:50 +02:00
using JuliaFEM.Test
2015-10-30 12:40:56 +02:00
using JuliaFEM: 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