(t *testing.T)
| 20 | } |
| 21 | |
| 22 | func TestColon(t *testing.T) { |
| 23 | sql := "x = ? AND y = ?" |
| 24 | s, _ := Colon.ReplacePlaceholders(sql) |
| 25 | assert.Equal(t, "x = :1 AND y = :2", s) |
| 26 | } |
| 27 | |
| 28 | func TestAtp(t *testing.T) { |
| 29 | sql := "x = ? AND y = ?" |
nothing calls this directly
no test coverage detected
searching dependent graphs…