changeset 1559:43e6acbefdd1 feature/sbp_operators/laplace_curvilinear

Rename testsets and add one for mapped grids
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 25 Apr 2024 08:59:45 +0200
parents 9113f437431d
children 6fdc81860b0c
files test/SbpOperators/volumeops/laplace/laplace_test.jl
diffstat 1 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/test/SbpOperators/volumeops/laplace/laplace_test.jl	Sat Apr 13 23:52:40 2024 +0200
+++ b/test/SbpOperators/volumeops/laplace/laplace_test.jl	Thu Apr 25 08:59:45 2024 +0200
@@ -72,12 +72,12 @@
     g_1D = equidistant_grid(0.0, 1., 101)
     g_3D = equidistant_grid((0.0, -1.0, 0.0), (1., 1., 1.), 51, 101, 52)
 
-    @testset "1D" begin
+    @testset "EquidistantGrid" begin
         Δ = laplace(g_1D, stencil_set)
         @test Δ == second_derivative(g_1D, stencil_set)
         @test Δ isa LazyTensor{Float64,1,1}
     end
-    @testset "3D" begin
+    @testset "TensorGrid" begin
         Δ = laplace(g_3D, stencil_set)
         @test Δ isa LazyTensor{Float64,3,3}
         Dxx = second_derivative(g_3D, stencil_set, 1)
@@ -86,5 +86,9 @@
         @test Δ == Dxx + Dyy + Dzz
         @test Δ isa LazyTensor{Float64,3,3}
     end
+
+    @testset "MappedGrid" begin
+        @test_broken false
+    end
 end