Sha256: ee39caa7cb092ddbb54b87743b80a3fed914802a701713f11668d0ff11b0bc77
Contents?: true
Size: 882 Bytes
Versions: 115
Compression:
Stored size: 882 Bytes
Contents
using NUnit.Framework; [TestFixture] public class AtbashTest { [TestCase("no", ExpectedResult = "ml")] [TestCase("yes", ExpectedResult = "bvh", Ignore = "Remove to run test case")] [TestCase("OMG", ExpectedResult = "lnt", Ignore = "Remove to run test case")] [TestCase("mindblowingly", ExpectedResult = "nrmwy oldrm tob", Ignore = "Remove to run test case")] [TestCase("Testing, 1 2 3, testing.", ExpectedResult = "gvhgr mt123 gvhgr mt", Ignore = "Remove to run test case")] [TestCase("Truth is fiction.", ExpectedResult = "gifgs rhurx grlm", Ignore = "Remove to run test case")] [TestCase("The quick brown fox jumps over the lazy dog.", ExpectedResult = "gsvjf rxpyi ldmul cqfnk hlevi gsvoz abwlt", Ignore = "Remove to run test case")] public string Encodes_words_using_atbash_cipher(string words) { return Atbash.Encode(words); } }
Version data entries
115 entries across 115 versions & 1 rubygems