mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
9 lines
309 B
C
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 */);
|