(t *testing.T)
| 77 | } |
| 78 | |
| 79 | func TestPutCastExpression(t *testing.T) { |
| 80 | ce := GetCastExpression() |
| 81 | ce.Expr = &Identifier{Name: "x"} |
| 82 | ce.Type = "INT" |
| 83 | PutCastExpression(ce) |
| 84 | PutCastExpression(nil) |
| 85 | } |
| 86 | |
| 87 | func TestPutIntervalExpression(t *testing.T) { |
| 88 | ie := GetIntervalExpression() |
nothing calls this directly
no test coverage detected