Files
ClassicalCiphers.jl/test/runtests.jl
2016-01-12 17:36:55 +00:00

14 lines
260 B
Julia

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