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