Ejemplo n.º 1
0
 public void ToCamelRemoveKeyPrefix(string input, string expected)
 {
     Assert.AreEqual(expected, CodeFormat.ToCamelCase(input, CodeFormatOptions.RemoveFKPrefix));
 }
Ejemplo n.º 2
0
 public void ToCamelSpecialPuncuation(string input, string expected)
 {
     Assert.AreEqual(expected, CodeFormat.ToCamelCase(input, CodeFormatOptions.RemoveTblPrefix));
 }
Ejemplo n.º 3
0
 public void ToCamelStartsWithNumbers(string input, string expected)
 {
     Assert.AreEqual(expected, CodeFormat.ToCamelCase(input));
 }
Ejemplo n.º 4
0
 public void ToCamelWithSpecialCharacters(string input, string expected)
 {
     Assert.AreEqual(expected, CodeFormat.ToCamelCase(input));
 }
Ejemplo n.º 5
0
 public void ToCamelWithMultipleSpaces(string input, string expected)
 {
     Assert.AreEqual(expected, CodeFormat.ToCamelCase(input));
 }
Ejemplo n.º 6
0
 public void ToCamelAllLower(string input, string expected)
 {
     Assert.AreEqual(expected, CodeFormat.ToCamelCase(input));
 }
Ejemplo n.º 7
0
 public void ToCamelSingleLetters(string input, string expected)
 {
     Assert.AreEqual(expected, CodeFormat.ToCamelCase(input));
 }