示例#1
0
 public void ShouldNotInterfereWithColNames()
 {
     SqlReservedWordsCaserFixer.Fix("SELECT MahSelect from MahTable").Should().Be("SELECT MahSelect FROM MahTable");
 }
 public static bool IsValid(string s) => s == SqlReservedWordsCaserFixer.Fix(s);
示例#3
0
 public void ShouldUpperCaseReserveWords(string input, string output)
 {
     SqlReservedWordsCaserFixer.Fix(input).Should().Be(output);
 }