reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
68 TimePoint<seconds> Sec = toTimePoint(TimeT); 69 TimePoint<milliseconds> Milli = toTimePoint(TimeT); 70 TimePoint<microseconds> Micro = toTimePoint(TimeT); 71 TimePoint<nanoseconds> Nano = toTimePoint(TimeT); 75 EXPECT_EQ(TimeT, toTimeT(Sec)); 76 EXPECT_EQ(TimeT, toTimeT(Milli)); 77 EXPECT_EQ(TimeT, toTimeT(Micro)); 78 EXPECT_EQ(TimeT, toTimeT(Nano));