Mercurial > repos > public > sbplib_julia
comparison test/Grids/tensor_grid_test.jl @ 1604:b459082533f7 feature/boundary_conditions
Remove unnecessary white space changes to otherwise untouched files
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Sat, 08 Jun 2024 22:51:31 +0200 |
parents | 3e7438e2a033 |
children | 5f348cc5598e b02917bcd7d5 7a2375080287 |
comparison
equal
deleted
inserted
replaced
1603:fca4a01d60c9 | 1604:b459082533f7 |
---|---|
182 @test boundary_indices(TensorGrid(g₁, g₄), TensorGridBoundary{1, Lower}()) == (1,) | 182 @test boundary_indices(TensorGrid(g₁, g₄), TensorGridBoundary{1, Lower}()) == (1,) |
183 @test boundary_indices(TensorGrid(g₁, g₄), TensorGridBoundary{1, Upper}()) == (11,) | 183 @test boundary_indices(TensorGrid(g₁, g₄), TensorGridBoundary{1, Upper}()) == (11,) |
184 @test boundary_indices(TensorGrid(g₄,g₁), TensorGridBoundary{2, Lower}()) == (1,) | 184 @test boundary_indices(TensorGrid(g₄,g₁), TensorGridBoundary{2, Lower}()) == (1,) |
185 @test boundary_indices(TensorGrid(g₄,g₁), TensorGridBoundary{2, Upper}()) == (11,) | 185 @test boundary_indices(TensorGrid(g₄,g₁), TensorGridBoundary{2, Upper}()) == (11,) |
186 end | 186 end |
187 | |
188 end | 187 end |
189 | 188 |
190 @testset "combined_coordinate_vector_type" begin | 189 @testset "combined_coordinate_vector_type" begin |
191 @test Grids.combined_coordinate_vector_type(Float64) == Float64 | 190 @test Grids.combined_coordinate_vector_type(Float64) == Float64 |
192 @test Grids.combined_coordinate_vector_type(Float64, Int) == SVector{2,Float64} | 191 @test Grids.combined_coordinate_vector_type(Float64, Int) == SVector{2,Float64} |