Skip to content

Commit a0c01b0

Browse files
committed
Fix unit test adding getLocalTime() fake
1 parent 6852f85 commit a0c01b0

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

extras/test/include/util/PropertyTestUtil.h

+1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
**************************************************************************************/
1111

1212
extern "C" unsigned long getTime();
13+
extern "C" unsigned long getLocalTime();
1314

1415
#endif /* PROPERTY_TEST_UTIL_H_ */

extras/test/src/util/PropertyTestUtil.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,8 @@ unsigned long getTime()
1616
{
1717
return 0;
1818
}
19+
20+
unsigned long getLocalTime()
21+
{
22+
return 0;
23+
}

0 commit comments

Comments
 (0)