public void RedditMorseToASCII() { const string input = ".... . .-.. .-.. --- / -.. .- .. .-.. -.-- / .--. .-. --- --. .-. .- -- -- . .-. / --. --- --- -.. / .-.. ..- -.-. -.- / --- -. / - .... . / -.-. .... .- .-.. .-.. . -. --. . ... / - --- -.. .- -.--"; string output = MorseCodeTranslator.ToASCII(input); Assert.AreEqual("HELLO DAILY PROGRAMMER GOOD LUCK ON THE CHALLENGES TODAY", output); }
public void EndOfAlphabetTestToASCII() { const string input = "-..- -.-- --.."; string output = MorseCodeTranslator.ToASCII(input); Assert.AreEqual("XYZ", output); }
public void CanTranslateThreeWordsToASCII() { const string input = ".... .. / - .... . .-. . / .... .."; string output = MorseCodeTranslator.ToASCII(input); Assert.AreEqual("HI THERE HI", output); }
public void CanTranslateMorseToASCII() { const string input = ".- -... -.-."; string output = MorseCodeTranslator.ToASCII(input); Assert.AreEqual("ABC", output); }