| 144 | } |
| 145 | |
| 146 | TEST_F(TestTimestamp, GmtOffsetNs) { |
| 147 | int64_t offset = MdfHelper::GmtOffsetNs(); |
| 148 | std::cout << "GOT Offset (h): " |
| 149 | << offset / 3'600'000'000'000 << std::endl; |
| 150 | int64_t dst_offset = MdfHelper::GmtOffsetNs(); |
| 151 | std::cout << "DST Offset (h): " |
| 152 | << dst_offset / 3'600'000'000'000 << std::endl; |
| 153 | } |
| 154 | |
| 155 | TEST_F(TestTimestamp, UtcTimestamp) { |
| 156 | UtcTimestamp now; |
nothing calls this directly
no test coverage detected