comparison test/Grids/manifolds_test.jl @ 1942:b8395f69ad80 feature/grids/manifolds

Add boundaries(::Chart) and broken tests
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 07 Feb 2025 14:05:37 +0100
parents 1e3089197397
children 2a923e673cfc
comparison
equal deleted inserted replaced
1941:1e3089197397 1942:b8395f69ad80
21 @test c([3,2]) == [6,4] 21 @test c([3,2]) == [6,4]
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
27 @test_broken Set(boundaries(X,unitsquare())) == Set([east,west,south,north])
26 end 28 end
27 29
28 @testset "CartesianAtlas" begin 30 @testset "CartesianAtlas" begin
29 @testset "Constructors" begin 31 @testset "Constructors" begin
30 c = Chart(identity, unitsquare()) 32 c = Chart(identity, unitsquare())