| 318 | } |
| 319 | |
| 320 | int64_t FloorToMicros(const TimestampValue& ts) { |
| 321 | EXPECT_TRUE(ts.HasDateAndTime()); |
| 322 | int64_t result = 0; |
| 323 | EXPECT_TRUE(ts.FloorUtcToUnixTimeMicros(&result)); |
| 324 | return result; |
| 325 | } |
| 326 | |
| 327 | int64_t FloorToMillis(const TimestampValue& ts) { |
| 328 | EXPECT_TRUE(ts.HasDateAndTime()); |
no test coverage detected