(t *testing.T)
| 116 | var expectedDebugDeleteSQL = "DELETE FROM table WHERE (column = 'val' AND other = '1')" |
| 117 | |
| 118 | func TestDebugSqlizerDeleteColon(t *testing.T) { |
| 119 | testDebugDeleteSQL.PlaceholderFormat(Colon) |
| 120 | assert.Equal(t, expectedDebugDeleteSQL, DebugSqlizer(testDebugDeleteSQL)) |
| 121 | } |
| 122 | |
| 123 | func TestDebugSqlizerDeleteAtp(t *testing.T) { |
| 124 | testDebugDeleteSQL.PlaceholderFormat(AtP) |
nothing calls this directly
no test coverage detected
searching dependent graphs…