(t *testing.T)
| 32 | } |
| 33 | |
| 34 | func TestWherePartErr(t *testing.T) { |
| 35 | _, _, err := newWherePart(1).ToSql() |
| 36 | assert.Error(t, err) |
| 37 | } |
| 38 | |
| 39 | func TestWherePartString(t *testing.T) { |
| 40 | sql, args, _ := newWherePart("x = ?", 1).ToSql() |
nothing calls this directly
no test coverage detected
searching dependent graphs…