(t *testing.T)
| 47 | } |
| 48 | |
| 49 | func TestPutInExpression(t *testing.T) { |
| 50 | ie := GetInExpression() |
| 51 | ie.Expr = &Identifier{Name: "x"} |
| 52 | ie.List = append(ie.List, &LiteralValue{Value: "1"}, &LiteralValue{Value: "2"}) |
| 53 | ie.Not = true |
| 54 | PutInExpression(ie) |
| 55 | PutInExpression(nil) |
| 56 | } |
| 57 | |
| 58 | func TestPutTupleExpression(t *testing.T) { |
| 59 | te := GetTupleExpression() |
nothing calls this directly
no test coverage detected