Files
thesis/julia/test/runtests.jl
2021-10-12 00:50:45 -06:00

23 lines
502 B
Julia

using Test
using Random
using LinearAlgebra
using SPICE
using Thesis
using Dates: DateTime, Dates
try
furnsh("../../spice_files/naif0012.tls")
furnsh("../../spice_files/de430.bsp")
catch
furnsh("spice_files/naif0012.tls")
furnsh("spice_files/de430.bsp")
end
@testset "All Tests" begin
# include("plotting.jl")
# include("inner_loop/laguerre-conway.jl")
# include("inner_loop/propagator.jl")
# include("inner_loop/nlp_solver.jl")
include("inner_loop/monotonic_basin_hopping.jl")
end