Files
ClassicalCiphers.jl/test/runtests.jl
Jake W. Ireland 9cb4f1306c Added Rail Fence Cipher implementation (addresses #23)
This is only my attempt at an implementation.  @r0cketr1kky can still have another attempt, or refine my solution, but it is here now for people to use.

TODO: add better docstrings.
2021-01-08 04:48:00 +13:00

24 lines
377 B
Julia

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