(t *testing.T)
| 881 | } |
| 882 | |
| 883 | func TestRenderCase_Nil(t *testing.T) { |
| 884 | var expr *ast.CaseExpression |
| 885 | if fmtExpr(expr, ast.CompactStyle()) != "" { |
| 886 | t.Error("nil should return empty string") |
| 887 | } |
| 888 | } |
| 889 | |
| 890 | func TestRenderCase_LowerKeywords(t *testing.T) { |
| 891 | expr := &ast.CaseExpression{ |
nothing calls this directly
no test coverage detected