Added tests

This commit is contained in:
rconnorjohnstone
2021-05-19 15:40:36 -06:00
parent 7296df65bc
commit 2460b9734b
3 changed files with 33 additions and 1 deletions

16
julia/test/test.jl Normal file
View File

@@ -0,0 +1,16 @@
using Test
using Random
using LinearAlgebra
# Includes
include("../constants.jl")
include("../conversions.jl")
include("../sft.jl")
include("../laguerre-conway.jl")
# Tests
@testset verbose=true "All Tests" begin
include("laguerre-conway.jl")
end
print()