comparison test/Grids/zero_dim_grid_test.jl @ 1492:d9d9ab18cdfc feature/grids/curvilinear

Merge default
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 01 Dec 2023 11:52:26 +0100
parents 4ad1282f8bab
children 471a948cd2b2
comparison
equal deleted inserted replaced
1451:2e08f3444354 1492:d9d9ab18cdfc
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