(t *testing.T)
| 8 | ) |
| 9 | |
| 10 | func TestQuestion(t *testing.T) { |
| 11 | sql := "x = ? AND y = ?" |
| 12 | s, _ := Question.ReplacePlaceholders(sql) |
| 13 | assert.Equal(t, sql, s) |
| 14 | } |
| 15 | |
| 16 | func TestDollar(t *testing.T) { |
| 17 | sql := "x = ? AND y = ?" |
nothing calls this directly
no test coverage detected
searching dependent graphs…