| 159 | Compression::type GetCompression() { return GetParam(); } |
| 160 | |
| 161 | std::unique_ptr<Codec> MakeCodec() { return *Codec::Create(GetCompression()); } |
| 162 | }; |
| 163 | |
| 164 | class CompressedOutputStreamTest : public ::testing::TestWithParam<Compression::type> { |
nothing calls this directly
no test coverage detected