From 390ebe1ed8270e182da40ce2e7fa4e1c642439c2 Mon Sep 17 00:00:00 2001 From: Kristof Cools Date: Mon, 9 Sep 2024 16:26:44 +0200 Subject: [PATCH] tests in testitem to fix naming conflict --- test/test_gridfunction.jl | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/test/test_gridfunction.jl b/test/test_gridfunction.jl index 95bfd434..f951c7ea 100644 --- a/test/test_gridfunction.jl +++ b/test/test_gridfunction.jl @@ -1,8 +1,10 @@ -using BEAST +@testitem "gridfunction" begin + +# using BEAST using CompScienceMeshes using StaticArrays using LinearAlgebra -using Test +# using Test U = Float64 a = U(1) @@ -113,4 +115,6 @@ gfc0Γ2 = BEAST.FEMFunction(coeffsΓ2, C0Γ2) @test_throws ErrorException("Functions must be defined over the same geometry.") lincombgfs + 1.0gfc0Γ2 ## Test mixed combinations -@test BEAST.Lp_integrate(gfc0 + 1im * gfc0; p=1) ≈ sqrt(2) * 21 \ No newline at end of file +@test BEAST.Lp_integrate(gfc0 + 1im * gfc0; p=1) ≈ sqrt(2) * 21 + +end \ No newline at end of file