Example #1
0
 public void Empty_string_abbreviated_to_empty_string()
 {
     Assert.That(Acronym.Abbreviate(string.Empty)
                 , Is.EqualTo(string.Empty));
 }
Example #2
0
 public string Phrase_abbreviated_to_acronym(string phrase)
 {
     return(Acronym.Abbreviate(phrase));
 }