Files
thesis/julia/test/test.jl
rconnorjohnstone 2c39c34f01 Got plotting working
2021-05-19 22:23:54 -06:00

16 lines
227 B
Julia

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