| 22 | using agi::Time; |
| 23 | |
| 24 | TEST(lagi_time, out_of_range_times) { |
| 25 | EXPECT_EQ(0, (int)Time(-1)); |
| 26 | EXPECT_EQ(10 * 60 * 60 * 1000 - 10, (int)Time(10 * 60 * 60 * 1000)); |
| 27 | } |
| 28 | |
| 29 | TEST(lagi_time, rounds_to_cs) { |
| 30 | EXPECT_EQ(10, (int)Time(14)); |
nothing calls this directly
no test coverage detected