Esempio n. 1
0
 public void Can_Convert_String_Casing(string value, string expected)
 {
     // yes, strings can have other formats, but these are internal and I control the format
     Assert.Equal(expected, _utility.PascalCaseToTitleCase(value));
 }