(t *testing.T)
| 131 | } |
| 132 | |
| 133 | func TestDebugSqlizerDeleteQuestion(t *testing.T) { |
| 134 | testDebugDeleteSQL.PlaceholderFormat(Question) |
| 135 | assert.Equal(t, expectedDebugDeleteSQL, DebugSqlizer(testDebugDeleteSQL)) |
| 136 | } |
| 137 | |
| 138 | var testDebugInsertSQL = Insert("table").Values(1, "test") |
| 139 | var expectedDebugInsertSQL = "INSERT INTO table VALUES ('1','test')" |
nothing calls this directly
no test coverage detected
searching dependent graphs…