diff test/Grids/zero_dim_grid_test.jl @ 1534:d4adee53aa30 bugfix/sbp_operators/stencil_return_type

Merge default
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 11 Apr 2024 22:51:00 +0200
parents 4ad1282f8bab
children 471a948cd2b2
line wrap: on
line diff
--- a/test/Grids/zero_dim_grid_test.jl	Fri Nov 24 22:42:50 2023 +0100
+++ b/test/Grids/zero_dim_grid_test.jl	Thu Apr 11 22:51:00 2024 +0200
@@ -41,4 +41,8 @@
     @testset "boundary_grid" begin
         @test_throws ArgumentError("ZeroDimGrid has no boundaries") boundary_grid(ZeroDimGrid(@SVector[1.0,2.0]), :bid)
     end
+
+    @testset "boundary_indices" begin
+        @test_throws ArgumentError("ZeroDimGrid has no boundaries") boundary_indices(ZeroDimGrid(@SVector[1.0,2.0]), :bid)
+    end
 end