(t *testing.T)
| 929 | } |
| 930 | |
| 931 | func TestRenderBetween_Nil(t *testing.T) { |
| 932 | var expr *ast.BetweenExpression |
| 933 | if fmtExpr(expr, ast.CompactStyle()) != "" { |
| 934 | t.Error("nil should return empty string") |
| 935 | } |
| 936 | } |
| 937 | |
| 938 | // ─── IN expression ──────────────────────────────────────────────────────────── |
| 939 |
nothing calls this directly
no test coverage detected