Basic test case for literal unpacking - two literals in a run.
| 273 | |
| 274 | /// Basic test case for literal unpacking - two literals in a run. |
| 275 | TEST_F(RleTest, TwoLiteralRun) { |
| 276 | vector<int> values{1, 0}; |
| 277 | ValidateRle(values, 1, nullptr, -1); |
| 278 | for (int width = 1; width <= MAX_WIDTH; ++width) { |
| 279 | ValidateRle(values, width, nullptr, -1); |
| 280 | } |
| 281 | } |
| 282 | |
| 283 | TEST_F(RleTest, ValueSkipping) { |
| 284 | vector<int> seq; |
nothing calls this directly
no test coverage detected