| 182 | class BaseChunkerTest : public ::testing::TestWithParam<bool> { |
| 183 | protected: |
| 184 | void SetUp() override { chunker_ = MakeChunker(GetParam()); } |
| 185 | |
| 186 | std::unique_ptr<Chunker> chunker_; |
| 187 | }; |
nothing calls this directly
no test coverage detected