(t *testing.T)
| 55 | var sqlStr = "SELECT test" |
| 56 | |
| 57 | func TestExecWith(t *testing.T) { |
| 58 | db := &DBStub{} |
| 59 | ExecWith(db, sqlizer) |
| 60 | assert.Equal(t, sqlStr, db.LastExecSql) |
| 61 | } |
| 62 | |
| 63 | func TestQueryWith(t *testing.T) { |
| 64 | db := &DBStub{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…