(t *testing.T)
| 318 | } |
| 319 | |
| 320 | func TestLiteralNil(t *testing.T) { |
| 321 | expr := nilTestExpr(t) |
| 322 | if expr.AsLiteral() != nil { |
| 323 | t.Errorf("AsLiteral() got %v, wanted nil", expr.AsLiteral()) |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | func TestMap(t *testing.T) { |
| 328 | fac := ast.NewExprFactory() |
nothing calls this directly
no test coverage detected