| 57 | }; |
| 58 | |
| 59 | TEST(Compactor, RightSimple) { |
| 60 | MockWriter writer({Write(0, 4, 5, Compactor::RIGHT, 3)}); |
| 61 | int16_t xs[] = {4, 5, 6}; |
| 62 | int16_t ys[] = {5, 5, 5}; |
| 63 | Compactor().drawPixels(xs, ys, 3, std::move(writer)); |
| 64 | } |
| 65 | |
| 66 | TEST(Compactor, RightWithReps) { |
| 67 | MockWriter writer({ |
nothing calls this directly
no test coverage detected