(t *testing.T)
| 90 | var expectedDebugUpateSQL = "UPDATE table SET x = '1', y = 'val'" |
| 91 | |
| 92 | func TestDebugSqlizerUpdateColon(t *testing.T) { |
| 93 | testDebugUpdateSQL.PlaceholderFormat(Colon) |
| 94 | assert.Equal(t, expectedDebugUpateSQL, DebugSqlizer(testDebugUpdateSQL)) |
| 95 | } |
| 96 | |
| 97 | func TestDebugSqlizerUpdateAtp(t *testing.T) { |
| 98 | testDebugUpdateSQL.PlaceholderFormat(AtP) |
nothing calls this directly
no test coverage detected
searching dependent graphs…