From 96ae023f9957914eacca85ff51aef036243bbccd Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Sat, 9 May 2026 18:38:50 +0300 Subject: [PATCH] test(fields): add fields topic runner --- test/fields/runtests.jl | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test/fields/runtests.jl diff --git a/test/fields/runtests.jl b/test/fields/runtests.jl new file mode 100644 index 0000000..cb2d6a0 --- /dev/null +++ b/test/fields/runtests.jl @@ -0,0 +1,11 @@ +# SPDX-FileCopyrightText: 2015-2026 Jukka Aho +# SPDX-License-Identifier: MIT + +using Test +using JuliaFEM + +@testset "Fields" begin + include("test_local_field.jl") + include("test_field_specs.jl") + include("test_fields_api.jl") +end