diff test/Grids/manifolds_test.jl @ 1564:35fe4375b35f feature/grids/manifolds

Export things and fix ConcreteChart and Simplex
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 25 Apr 2024 13:17:48 +0200
parents 81e97d3bec8c
children 157c43966b06
line wrap: on
line diff
--- a/test/Grids/manifolds_test.jl	Wed Apr 24 13:26:30 2024 +0200
+++ b/test/Grids/manifolds_test.jl	Thu Apr 25 13:17:48 2024 +0200
@@ -31,11 +31,11 @@
 
 @testset "Simplex" begin
     @test Simplex([1,2], [3,4]) isa Simplex{Int, 2}
-    @test Simplex([1,2,3], [4,5,6]) isa Simplex{Int, 3}
+    @test Simplex([1,2,3], [4,5,6],[1,1,1]) isa Simplex{Int, 3}
 end
 
 @testset "Chart" begin
-
+    @test ConcreteChart(x->2x, unitsquare()) isa Chart{2}
 end
 
 @testset "Atlas" begin