public void RandomTests() { for (var i = 0; i < 40; i++) { string randomInput = RandomInput(); string encryptInput = EncryptThis(randomInput); string decipherInput = KataDecipherThis.DecipherThis(encryptInput); Assert.AreEqual(randomInput, decipherInput); } }
public void BasicTests(string input, string expected) { Assert.AreEqual(expected, KataDecipherThis.DecipherThis(input)); }