diff test/testGrids.jl @ 338:2b0c9b30ea3b refactor/combine_to_one_package

Add test sets for each submodule to make the test output nicer
author Jonatan Werpers <jonatan@werpers.com>
date Fri, 25 Sep 2020 13:48:23 +0200
parents f4e3e71a4ff4
children a18bd337a280
line wrap: on
line diff
--- a/test/testGrids.jl	Fri Sep 25 13:35:26 2020 +0200
+++ b/test/testGrids.jl	Fri Sep 25 13:48:23 2020 +0200
@@ -1,8 +1,12 @@
 using Sbplib.Grids
 using Test
 
+@testset "Grids" begin
+
 @testset "EquidistantGrid" begin
     @test EquidistantGrid(4,0,1) isa EquidistantGrid
     @test dimension(EquidistantGrid(4,0,1)) == 1
     @test EquidistantGrid(4,0,1) == EquidistantGrid((4,),(0,),(1,))
 end
+
+end