コード例 #1
0
        public void ConvertWordToPhonetics_Word_PhoneticsFormReturned(string inputWord, string expected)
        {
            var phonetics     = new Phonetics(inputWord);
            var phoneticsForm = phonetics.ConvertWordToPhonetics(phonetics.ParsingWord()).ToString();

            Assert.AreEqual(expected, phoneticsForm);
        }