chore(test): remove stray test/element runner

Delete the mistyped `element/` harness superseded by `test/elements/runtests.jl`.

- Drop `test/element/runtests.jl`.
This commit is contained in:
Jukka Aho
2026-05-09 18:26:36 +03:00
parent b6ec433e23
commit de153305f6
-24
View File
@@ -1,24 +0,0 @@
# This file is a part of JuliaFEM.
# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE
"""
Test Suite for Ciarlet Elements
"""
using Test
using JuliaFEM
using Tensors
@testset "Ciarlet Elements" begin
@testset "CElement Type" begin
include("test_celement_type.jl")
end
@testset "CElement Creation" begin
include("test_celement_creation.jl")
end
@testset "CElement Interpolation" begin
include("test_celement_interpolation.jl")
end
end