(t *testing.T)
| 139 | var expectedDebugInsertSQL = "INSERT INTO table VALUES ('1','test')" |
| 140 | |
| 141 | func TestDebugSqlizerInsertColon(t *testing.T) { |
| 142 | testDebugInsertSQL.PlaceholderFormat(Colon) |
| 143 | assert.Equal(t, expectedDebugInsertSQL, DebugSqlizer(testDebugInsertSQL)) |
| 144 | } |
| 145 | |
| 146 | func TestDebugSqlizerInsertAtp(t *testing.T) { |
| 147 | testDebugInsertSQL.PlaceholderFormat(AtP) |
nothing calls this directly
no test coverage detected
searching dependent graphs…