Mercurial > repos > public > sbplib_julia
diff test/Grids/zero_dim_grid_test.jl @ 1533:450110ed5d18 bugfix/sbp_operators/stencil_return_type
Merge default
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Thu, 11 Apr 2024 22:50:59 +0200 |
parents | 4ad1282f8bab |
children | 471a948cd2b2 |
line wrap: on
line diff
--- a/test/Grids/zero_dim_grid_test.jl Sun Nov 26 23:07:21 2023 +0100 +++ b/test/Grids/zero_dim_grid_test.jl Thu Apr 11 22:50:59 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