(t *testing.T, db *sql.DB, q string, args ...any)
| 172 | } |
| 173 | |
| 174 | func mustExec(t *testing.T, db *sql.DB, q string, args ...any) { |
| 175 | t.Helper() |
| 176 | if _, err := db.Exec(q, args...); err != nil { |
| 177 | t.Fatalf("exec: %v", err) |
| 178 | } |
| 179 | } |
no outgoing calls
no test coverage detected