blob: 3334602bd8915ce7a467e2b77f1f419fdf55bd55 [file] [log] [blame]
#include "aos/events/logging/snappy_encoder.h"
#include "aos/events/logging/buffer_encoder_param_test.h"
#include "aos/util/file.h"
#include "gmock/gmock.h"
#include "gtest/gtest.h"
namespace aos::logger::testing {
INSTANTIATE_TEST_SUITE_P(
Snappy, BufferEncoderTest,
::testing::Combine(::testing::Values([]() {
return std::make_unique<SnappyEncoder>();
}),
::testing::Values([](std::string_view filename) {
return std::make_unique<SnappyDecoder>(filename);
}),
::testing::Range(0, 100)));
} // namespace aos::logger::testing