| 34 | } |
| 35 | |
| 36 | TEST(Streamable, FilledRect) { |
| 37 | FakeOffscreen<Rgb565> test_screen(5, 6, color::Black); |
| 38 | RawStreamableFilledRect rect(2, 3, color::White); |
| 39 | Draw(test_screen, 1, 2, rect); |
| 40 | EXPECT_THAT(test_screen, MatchesContent(WhiteOnBlack(), 5, 6, |
| 41 | " " |
| 42 | " " |
| 43 | " ** " |
| 44 | " ** " |
| 45 | " ** " |
| 46 | " ")); |
| 47 | } |
| 48 | |
| 49 | TEST(Streamable, ClippedFilledRect) { |
| 50 | FakeOffscreen<Rgb565> test_screen(5, 6, color::Black); |
nothing calls this directly
no test coverage detected