Пример #1
0
 public void ToCamelRemoveKeyPrefix(string input, string expected)
 {
     Assert.AreEqual(expected, CodeFormat.ToCamelCase(input, CodeFormatOptions.RemoveFKPrefix));
 }
Пример #2
0
 public void ToCamelSpecialPuncuation(string input, string expected)
 {
     Assert.AreEqual(expected, CodeFormat.ToCamelCase(input, CodeFormatOptions.RemoveTblPrefix));
 }
Пример #3
0
 public void ToCamelStartsWithNumbers(string input, string expected)
 {
     Assert.AreEqual(expected, CodeFormat.ToCamelCase(input));
 }
Пример #4
0
 public void ToCamelWithSpecialCharacters(string input, string expected)
 {
     Assert.AreEqual(expected, CodeFormat.ToCamelCase(input));
 }
Пример #5
0
 public void ToCamelWithMultipleSpaces(string input, string expected)
 {
     Assert.AreEqual(expected, CodeFormat.ToCamelCase(input));
 }
Пример #6
0
 public void ToCamelAllLower(string input, string expected)
 {
     Assert.AreEqual(expected, CodeFormat.ToCamelCase(input));
 }
Пример #7
0
 public void ToCamelSingleLetters(string input, string expected)
 {
     Assert.AreEqual(expected, CodeFormat.ToCamelCase(input));
 }