| 54 | static uint64_t GetUInt64(const int i) { return (1ull << 40) + i * i + 101; } |
| 55 | static float GetFloat(const int i) { return 3.1415926535897f * i; } |
| 56 | static double GetDouble(const int i) { return 6.62607004e-34 * 3e8 * i; } |
| 57 | |
| 58 | static std::chrono::microseconds GetChronoMicroseconds(const int i) { |
| 59 | return std::chrono::microseconds{(ts_offset_ + 3 * i) * 1000000ull + i}; |
no outgoing calls
no test coverage detected