annotate test/Grids/multiblockgrids_test.jl @ 1946:c63116e2ec8e
feature/grids/manifolds
Make boundaries() a method of boundary_identifiers
author |
Jonatan Werpers <jonatan@werpers.com> |
date |
Fri, 07 Feb 2025 17:37:42 +0100 |
parents |
e68669552ed8 |
children |
7da0ce15b3c1 |
rev |
line source |
1912
|
1 using Diffinitive.Grids
|
|
2
|
|
3 @testset "MultiBlockBoundary" begin
|
|
4 @test MultiBlockBoundary{1,UpperBoundary}() isa BoundaryIdentifier
|
|
5
|
|
6 @test grid_id(MultiBlockBoundary{1,UpperBoundary}()) == 1
|
|
7
|
|
8 @test boundary_id(MultiBlockBoundary{1,UpperBoundary}()) == UpperBoundary()
|
|
9
|
|
10 end
|