Files
thesis/julia/test/runtests.jl
2021-08-25 15:33:44 -06:00

17 lines
247 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")
end
print()