コード例 #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));
 }