16 lines
227 B
Julia
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()
|