comparison test/Grids/multiblockgrids_test.jl @ 2019:fb2dc185c197 feature/grids/multiblock_grids

Add stubs for functions and tests to be implemented
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 12 Mar 2025 10:40:28 +0100
parents a3ffc3202813
children 7f7207b9bd6c
comparison
equal deleted inserted replaced
2018:a3ffc3202813 2019:fb2dc185c197
19 @test MultiBlockGrid([g₁,g₂,g₃], C) isa MultiBlockGrid{Float64,1} 19 @test MultiBlockGrid([g₁,g₂,g₃], C) isa MultiBlockGrid{Float64,1}
20 20
21 # Dictionary 21 # Dictionary
22 @test MultiBlockGrid(Dict(:a=>g₁, :b=>g₂), [connection(:a, UpperBoundary(), :b, LowerBoundary())]) isa MultiBlockGrid{Float64,1} 22 @test MultiBlockGrid(Dict(:a=>g₁, :b=>g₂), [connection(:a, UpperBoundary(), :b, LowerBoundary())]) isa MultiBlockGrid{Float64,1}
23 end 23 end
24
25 @testset "Base.getindex" begin
26 @test_broken false
27 end
28
29 @testset "boundary_identifiers" begin
30 @test_broken false
31 end
32
33 @testset "boundary_grid" begin
34 @test_broken false
35 end
36
37 @testset "min_spacing" begin
38 @test_broken false
39 end
40
41 @testset "refine" begin
42 @test_broken false
43 end
44
45 @testset "coarsen" begin
46 @test_broken false
47 end
48
49 @testset "boundary_indices" begin
50 @test_broken false
51 end
52
53 @testset "eval_on" begin
54 @test_broken false
55 end
56
57 @testset "Base.map" begin
58 @test_broken false
59 end
24 end 60 end
25 61
26 62
27 @testset "MultiBlockBoundary" begin 63 @testset "MultiBlockBoundary" begin
28 @test MultiBlockBoundary{1,UpperBoundary}() isa BoundaryIdentifier 64 @test MultiBlockBoundary{1,UpperBoundary}() isa BoundaryIdentifier