(t *testing.T)
| 61 | } |
| 62 | |
| 63 | func TestQueryWith(t *testing.T) { |
| 64 | db := &DBStub{} |
| 65 | QueryWith(db, sqlizer) |
| 66 | assert.Equal(t, sqlStr, db.LastQuerySql) |
| 67 | } |
| 68 | |
| 69 | func TestQueryRowWith(t *testing.T) { |
| 70 | db := &DBStub{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…