Files
thesis/julia/test/test.jl
2021-05-19 17:36:47 -06:00

21 lines
358 B
Julia

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