(t *testing.T)
| 37 | } |
| 38 | |
| 39 | func TestPutBetweenExpression(t *testing.T) { |
| 40 | be := GetBetweenExpression() |
| 41 | be.Expr = &Identifier{Name: "x"} |
| 42 | be.Lower = &LiteralValue{Value: "1"} |
| 43 | be.Upper = &LiteralValue{Value: "10"} |
| 44 | be.Not = true |
| 45 | PutBetweenExpression(be) |
| 46 | PutBetweenExpression(nil) |
| 47 | } |
| 48 | |
| 49 | func TestPutInExpression(t *testing.T) { |
| 50 | ie := GetInExpression() |
nothing calls this directly
no test coverage detected