Files
thesis/julia/test/runtests.jl
2021-08-30 23:28:36 -06:00

18 lines
295 B
Julia

using Test
using Random
using LinearAlgebra
using Thesis
# Tests
@testset "All Tests" begin
# include("spacecraft.jl")
# include("laguerre-conway.jl")
# include("propagator.jl")
# include("plotting.jl")
include("find_closest.jl")
include("monotonic_basin_hopping.jl")
end
print()