| 29 | class SqliteTest : public ::testing::Test { |
| 30 | protected: |
| 31 | void SetUp() override { |
| 32 | TF_ASSERT_OK(Sqlite::Open(":memory:", SQLITE_OPEN_READWRITE, &db_)); |
| 33 | db_->PrepareOrDie("CREATE TABLE T (a BLOB, b BLOB)").StepAndResetOrDie(); |
| 34 | } |
| 35 | |
| 36 | void TearDown() override { db_->Unref(); } |
| 37 |
nothing calls this directly
no test coverage detected