(t *testing.T)
| 66 | // Just check that creating an sqlite writer does not crash. |
| 67 | func TestSQLiteNewSQLiteWriter(t *testing.T) { makeWriter(t, false, ":memory:", false) } |
| 68 | func TestSQLiteNewSQLiteRawWriter(t *testing.T) { makeWriter(t, true, ":memory:", false) } |
| 69 | |
| 70 | func doOneRound(t *testing.T, path string, raw bool) { |
| 71 | doOneRoundTruncate(t, path, false, raw) |
nothing calls this directly
no test coverage detected