(t *testing.T)
| 63 | } |
| 64 | |
| 65 | func TestPutArrayConstructor(t *testing.T) { |
| 66 | ac := GetArrayConstructor() |
| 67 | ac.Elements = append(ac.Elements, &LiteralValue{Value: "1"}) |
| 68 | PutArrayConstructor(ac) |
| 69 | PutArrayConstructor(nil) |
| 70 | } |
| 71 | |
| 72 | func TestPutSubqueryExpression(t *testing.T) { |
| 73 | se := GetSubqueryExpression() |
nothing calls this directly
no test coverage detected