public void ShouldNotInterfereWithColNames() { SqlStringStyleFixer.Fix("SELECT MahSelect from MahTable").Should().Be("SELECT MahSelect from MahTable"); }
public static bool IsValid(string s) => s == SqlStringStyleFixer.Fix(s);
public void ShouldUpperCaseReserveWords(string input, string output) { SqlStringStyleFixer.Fix(input).Should().Be(output); }