(t *testing.T)
| 146 | } |
| 147 | |
| 148 | func TestPrepared(t *testing.T) { |
| 149 | t.Parallel() |
| 150 | |
| 151 | sdb, cleanup := sqltest.SQLite(t, []string{"schema"}) |
| 152 | defer sdb.Close() |
| 153 | defer cleanup() |
| 154 | |
| 155 | q, err := Prepare(context.Background(), sdb) |
| 156 | if err != nil { |
| 157 | t.Fatal(err) |
| 158 | } |
| 159 | |
| 160 | runOnDeckQueries(t, q) |
| 161 | } |
| 162 | |
| 163 | func TestQueries(t *testing.T) { |
| 164 | t.Parallel() |
nothing calls this directly
no test coverage detected