mirror of
https://github.com/Smaug123/ClassicalCiphers.jl
synced 2025-10-08 10:58:39 +00:00
14 lines
260 B
Julia
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
|