comparison test/Grids/zero_dim_grid_test.jl @ 1263:b0819f6b9d4a refactor/grids

Add missing test sets to zero_dim_grid.jl
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 24 Feb 2023 20:44:36 +0100
parents 8b9a77d2dc91
children dbddd0f61bde
comparison
equal deleted inserted replaced
1262:5e28ae42caf2 1263:b0819f6b9d4a
21 @test eltype(g) == SVector{2,Int} 21 @test eltype(g) == SVector{2,Int}
22 @test length(g) == 1 22 @test length(g) == 1
23 @test size(g) == () 23 @test size(g) == ()
24 @test collect(g) == fill(@SVector[1,2]) 24 @test collect(g) == fill(@SVector[1,2])
25 end 25 end
26
27 @testset "refine" begin
28 @test_broken false
29 end
30
31 @testset "coarsen" begin
32 @test_broken false
33 end
34
35 @testset "boundary_identifiers" begin
36 @test_broken false
37 end
38
39 @testset "boundary_grid" begin
40 @test_broken false
41 # Test that it throws an error
42 end
26 end 43 end