(t *testing.T)
| 67 | } |
| 68 | |
| 69 | func TestQueryRowWith(t *testing.T) { |
| 70 | db := &DBStub{} |
| 71 | QueryRowWith(db, sqlizer) |
| 72 | assert.Equal(t, sqlStr, db.LastQueryRowSql) |
| 73 | } |
| 74 | |
| 75 | func TestWithToSqlErr(t *testing.T) { |
| 76 | db := &DBStub{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…