comparison test/Grids/zero_dim_grid_test.jl @ 1532:0eee3a4140a6 bugfix/sbp_operators/stencil_return_type

Merge default
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 11 Apr 2024 22:50:57 +0200
parents 4ad1282f8bab
children 471a948cd2b2
comparison
equal deleted inserted replaced
1447:6baed7b081f2 1532:0eee3a4140a6
39 end 39 end
40 40
41 @testset "boundary_grid" begin 41 @testset "boundary_grid" begin
42 @test_throws ArgumentError("ZeroDimGrid has no boundaries") boundary_grid(ZeroDimGrid(@SVector[1.0,2.0]), :bid) 42 @test_throws ArgumentError("ZeroDimGrid has no boundaries") boundary_grid(ZeroDimGrid(@SVector[1.0,2.0]), :bid)
43 end 43 end
44
45 @testset "boundary_indices" begin
46 @test_throws ArgumentError("ZeroDimGrid has no boundaries") boundary_indices(ZeroDimGrid(@SVector[1.0,2.0]), :bid)
47 end
44 end 48 end