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