Files
thesis/julia/test/runtests.jl
2021-10-29 19:36:44 -06:00

24 lines
523 B
Julia

using Test
using Random
using LinearAlgebra
using SPICE
using Thesis
using Dates: DateTime, Millisecond, Dates, Second, format, datetime2unix, unix2datetime
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("laguerre-conway.jl")
include("propagator.jl")
include("nlp_solver.jl")
include("mbh.jl")
include("genetic_algorithm.jl")
end