mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-08-16 18:44:05 +00:00
16 lines
247 B
Julia
16 lines
247 B
Julia
# This file is a part of JuliaFEM.
|
|
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md
|
|
|
|
|
|
module FieldTests
|
|
|
|
using JuliaFEM.Test
|
|
|
|
using JuliaFEM.Core: Field
|
|
|
|
function test_create_field()
|
|
f = Field(1.0)
|
|
end
|
|
|
|
end
|