| 33 | class RedisStreamTest : public TestBase { // NOLINT |
| 34 | public: |
| 35 | static void CheckStreamEntryValues(const std::vector<std::string> &got, const std::vector<std::string> &expected) { |
| 36 | EXPECT_EQ(got.size(), expected.size()); |
| 37 | for (size_t i = 0; i < got.size(); ++i) { |
| 38 | EXPECT_EQ(got[i], expected[i]); |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | protected: |
| 43 | RedisStreamTest() : name_("test_stream") { stream_ = new redis::Stream(storage_.get(), "stream_ns"); } |
nothing calls this directly
no outgoing calls
no test coverage detected