-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathruntests.jl
44 lines (22 loc) · 1.27 KB
/
runtests.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
module CellValuesTests
using Test
include("CellValuesMocks.jl")
include("MapsMocks.jl")
@testset "CellValuesMocks" begin include("CellValuesMocksTests.jl") end
@testset "MapsMocks" begin include("MapsMocksTests.jl") end
@testset "CellNumbers" begin include("CellNumbersTests.jl") end
@testset "CellArrays" begin include("CellArraysTests.jl") end
@testset "CellMaps" begin include("CellMapsTests.jl") end
@testset "Kernels" begin include("KernelsTests.jl") end
@testset "CellNumberApply" begin include("CellNumberApplyTests.jl") end
@testset "CellArrayApply" begin include("CellArrayApplyTests.jl") end
@testset "MapApply" begin include("MapApplyTests.jl") end
@testset "CellMapApply" begin include("CellMapApplyTests.jl") end
@testset "CellValuesOperations" begin include("CellValuesOperationsTests.jl") end
@testset "CellValuesGallery" begin include("CellValuesGalleryTests.jl") end
@testset "CellValuesAppend" begin include("CellValuesAppendTests.jl") end
@testset "CellValuesReindex" begin include("CellValuesReindexTests.jl") end
@testset "FindLocalIndex" begin include("FindLocalIndexTests.jl") end
@testset "ConstantCellValues" begin include("ConstantCellValuesTests.jl") end
@testset "CompressedCellValues" begin include("CompressedCellValuesTests.jl") end
end # module