Files
ClassicalCiphers.jl/test/runtests.jl
2016-01-07 12:27:34 +00:00

13 lines
234 B
Julia

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