示例#1
0
 public void VoicingOrStunningConsonantsReplacerTest(string word, string expectedResult)
 {
     this.replacer = new StringLettersToSoundReplacer(word);
     Assert.AreEqual(expectedResult, this.replacer.VoicingOrStunningConsonantsReplacer());
 }
示例#2
0
 public void ReplacementUnstressedOTest(string word, string expectedResult)
 {
     this.replacer = new StringLettersToSoundReplacer(word);
     Assert.AreEqual(expectedResult, this.replacer.ReplacementUnstressedO());
 }
示例#3
0
 public void SofteningConsonantsTest(string word, string expectedResult)
 {
     this.replacer = new StringLettersToSoundReplacer(word);
     Assert.AreEqual(expectedResult, this.replacer.SofteningConsonants());
 }
示例#4
0
 public void ProcessingVowelsIntoSoundsTest(string word, string expectedResult)
 {
     this.replacer = new StringLettersToSoundReplacer(word);
     Assert.AreEqual(expectedResult, this.replacer.ProcessingVowelsIntoSounds());
 }