Files
ClassicalCiphers.jl/test/runtests.jl

11 lines
192 B
Julia

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