17 lines
261 B
Julia
17 lines
261 B
Julia
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()
|