Exemplo n.º 1
0
 public static void Minified(ISqlStatement statement, string sql)
 {
     Assert.NotNull(statement);
     Assert.AreEqual(sql, statement.Minified());
 }
Exemplo n.º 2
0
 public static SqlSyntaxException HasSyntaxError(ISqlStatement statement)
 {
     Assert.NotNull(statement);
     return(Assert.Throws <SqlSyntaxException>(() => statement.Minified()));
 }