time_t now = time(NULL);
tm *currentTime = localtime(&now);
HelperClass helper({(uint8_t)currentTime->tm_mday,(uint8_t)(1+ currentTime->tm_mon),
(uint16_t)(currentTime->tm_year+1900),
(uint8_t)currentTime->tm_hour,
(uint8_t)currentTime->tm_min,(uint8_t)currentTime->tm_sec});
And output of this I need to test in gtest. Do anyone know how to mock it for gtest?