Files
cpp-thirdparty/noarch/lib/py/cxxtest/doc/examples/time_mock.h
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

9 lines
309 B
C

// time_mock.h
#include <time.h>
#include <cxxtest/Mock.h>
CXXTEST_MOCK_GLOBAL(time_t, /* Return type */
time, /* Name of the function */
(time_t *t), /* Prototype */
(t) /* Argument list */);