@@ -26,12 +26,70 @@ using MicroFloatingPoints.MFPUtils
26
26
using MicroFloatingPoints. MFPRandom
27
27
using MicroFloatingPoints. MFPPlot
28
28
29
- # Call "julia runtests.jl [tests1] [tests2] ..."
30
- # to launch only the tests in `test1.jl`, `test2.jl`, ...
31
29
# Calling "julia runtests.jl" launches all tests in the directory.
32
30
@testset ExtendedTestSet " All the tests" begin
33
- @testset " All tests" begin
34
- @includetests ARGS
31
+ @testset " Arithmetic tests" begin
32
+ include (" arithmetic.jl" )
33
+ end
34
+ @testset " Constructor tests" begin
35
+ include (" constructors.jl" )
36
+ end
37
+ @testset " Emask tests" begin
38
+ include (" Emask.jl" )
39
+ end
40
+ @testset " fmask tests" begin
41
+ include (" fmask.jl" )
42
+ end
43
+ @testset " prevnext tests" begin
44
+ include (" prevnext.jl" )
45
+ end
46
+ @testset " smask tests" begin
47
+ include (" smask.jl" )
48
+ end
49
+ @testset " bias tests" begin
50
+ include (" bias.jl" )
51
+ end
52
+ @testset " convert tests" begin
53
+ include (" convert.jl" )
54
+ end
55
+ @testset " Emax tests" begin
56
+ include (" Emax.jl" )
57
+ end
58
+ @testset " iterator tests" begin
59
+ include (" iterator.jl" )
60
+ end
61
+ @testset " utils tests" begin
62
+ include (" utils.jl" )
63
+ end
64
+ @testset " classes tests" begin
65
+ include (" classes.jl" )
66
+ end
67
+ @testset " decompose tests" begin
68
+ include (" decompose.jl" )
69
+ end
70
+ @testset " Emin tests" begin
71
+ include (" Emin.jl" )
72
+ end
73
+ @testset " misc tests" begin
74
+ include (" misc.jl" )
75
+ end
76
+ @testset " signbit tests" begin
77
+ include (" signbit.jl" )
78
+ end
79
+ @testset " constants tests" begin
80
+ include (" constants.jl" )
81
+ end
82
+ @testset " display tests" begin
83
+ include (" display.jl" )
84
+ end
85
+ @testset " error tests" begin
86
+ include (" error.jl" )
87
+ end
88
+ @testset " parse tests" begin
89
+ include (" parse.jl" )
90
+ end
91
+ @testset " sign tests" begin
92
+ include (" sign.jl" )
35
93
end
36
94
end ;
37
95
0 commit comments