Files
ClassicalCiphers.jl/test/runtests.jl
2019-09-12 19:18:28 +01:00

23 lines
356 B
Julia

using ClassicalCiphers
using Test
tests = [
"playfair",
"vigenere",
"monoalphabetic",
"caesar",
"portas",
"affine",
"enigma",
"hill",
"solitaire",
]
println("Running tests:")
for t in tests
test_fn = "$t.jl"
println(" * $test_fn")
include(test_fn)
end