(t *testing.T)
| 976 | } |
| 977 | |
| 978 | func TestRenderIn_Nil(t *testing.T) { |
| 979 | var expr *ast.InExpression |
| 980 | if fmtExpr(expr, ast.CompactStyle()) != "" { |
| 981 | t.Error("nil should return empty string") |
| 982 | } |
| 983 | } |
| 984 | |
| 985 | // ─── EXISTS expression ──────────────────────────────────────────────────────── |
| 986 |
nothing calls this directly
no test coverage detected