(t *testing.T)
| 43 | } |
| 44 | |
| 45 | func TestQueryContextWith(t *testing.T) { |
| 46 | db := &DBStub{} |
| 47 | QueryContextWith(ctx, db, sqlizer) |
| 48 | assert.Equal(t, sqlStr, db.LastQuerySql) |
| 49 | } |
| 50 | |
| 51 | func TestQueryRowContextWith(t *testing.T) { |
| 52 | db := &DBStub{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…