| 238 | Options last_options_; |
| 239 | |
| 240 | DBTest() : env_(new SpecialEnv(Env::Default())), option_config_(kDefault) { |
| 241 | filter_policy_ = NewBloomFilterPolicy(10); |
| 242 | dbname_ = test::TmpDir() + "/db_test"; |
| 243 | DestroyDB(dbname_, Options()); |
| 244 | db_ = nullptr; |
| 245 | Reopen(); |
| 246 | } |
| 247 | |
| 248 | ~DBTest() { |
| 249 | delete db_; |
nothing calls this directly
no test coverage detected