Mercurial > repos > public > sbplib_julia
comparison test/Grids/manifolds_test.jl @ 1944:2a923e673cfc feature/grids/manifolds
Add boundary_identifiers for Chart
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 07 Feb 2025 15:56:04 +0100 |
parents | b8395f69ad80 |
children | 19efb9dacfff |
comparison
equal
deleted
inserted
replaced
1943:48c49c04f3b2 | 1944:2a923e673cfc |
---|---|
22 @test parameterspace(c) == unitsquare() | 22 @test parameterspace(c) == unitsquare() |
23 @test ndims(c) == 2 | 23 @test ndims(c) == 2 |
24 | 24 |
25 @test jacobian(c, [3,2]) == [2,2] | 25 @test jacobian(c, [3,2]) == [2,2] |
26 | 26 |
27 @test_broken Set(boundaries(X,unitsquare())) == Set([east,west,south,north]) | 27 @test Set(boundaries(Chart(X,unitsquare()))) == Set([east(),west(),south(),north()]) |
28 end | 28 end |
29 | 29 |
30 @testset "CartesianAtlas" begin | 30 @testset "CartesianAtlas" begin |
31 @testset "Constructors" begin | 31 @testset "Constructors" begin |
32 c = Chart(identity, unitsquare()) | 32 c = Chart(identity, unitsquare()) |