(t *testing.T)
| 275 | } |
| 276 | |
| 277 | func TestIdentNil(t *testing.T) { |
| 278 | expr := nilTestExpr(t) |
| 279 | if expr.AsIdent() != "" { |
| 280 | t.Errorf("AsIdent() got %s, wanted ''", expr.AsIdent()) |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | func TestList(t *testing.T) { |
| 285 | fac := ast.NewExprFactory() |
nothing calls this directly
no test coverage detected