forked from QEDjl-project/QEDprocesses.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruntests.jl
33 lines (28 loc) · 815 Bytes
/
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
using QEDprocesses
using Test
using SafeTestsets
begin
# # Interfaces
@time @safetestset "model interface" begin
include("interfaces/model_interface.jl")
end
@time @safetestset "process interface" begin
include("interfaces/process_interface.jl")
end
# TODO: remove after restructuring
#@time @safetestset "computation setup interface" begin
# include("interfaces/setup_interface.jl")
#end
# modules
@time @safetestset "propagators" begin
include("propagators.jl")
end
@time @safetestset "cross section & probability" begin
include("cross_sections.jl")
end
@time @safetestset "phase spaces" begin
include("phase_spaces.jl")
end
# scattering processes
include("processes/run_process_test.jl")
end