Brian Silverman | f59fe3f | 2020-09-22 21:04:09 -0700 | [diff] [blame] | 1 | #include "aos/events/logging/lzma_encoder.h" |
| 2 | |
| 3 | #include "aos/events/logging/buffer_encoder_param_test.h" |
| 4 | #include "gtest/gtest.h" |
| 5 | |
| 6 | namespace aos::logger::testing { |
| 7 | |
| 8 | INSTANTIATE_TEST_CASE_P( |
| 9 | Lzma, BufferEncoderTest, |
| 10 | ::testing::Combine(::testing::Values([]() { |
| 11 | return std::make_unique<LzmaEncoder>(2); |
| 12 | }), |
| 13 | ::testing::Values([](std::string_view filename) { |
| 14 | return std::make_unique<LzmaDecoder>(filename); |
| 15 | }), |
| 16 | ::testing::Range(0, 100))); |
| 17 | |
| 18 | } // namespace aos::logger::testing |