コード例 #1
0
        public void CheckOnNoPlus_WordWithOneVowel_WordWithPlusReturned(string inputWord, string expected)
        {
            var phonetics = new Phonetics(inputWord);

            phonetics.CheckOnNoPlus();

            Assert.AreEqual(expected, phonetics.Word);
        }