| 2 | #include "all.h" |
| 3 | |
| 4 | TEST(Doom, doom_get_frame_from_time) { |
| 5 | dvl::DoomQuestState = 1200 * 8 + 548; |
| 6 | EXPECT_EQ(dvl::doom_get_frame_from_time(), 8); |
| 7 | } |
| 8 | |
| 9 | TEST(Doom, doom_get_frame_from_time_max) { |
| 10 | dvl::DoomQuestState = 1200 * 30 + 1; |
nothing calls this directly
no test coverage detected