mirror of
https://github.com/ThrowTheSwitch/Unity
synced 2025-03-12 16:11:12 -04:00
14 lines
277 B
C
14 lines
277 B
C
#ifndef MOCK_MOCK_H
|
|
#define MOCK_MOCK_H
|
|
|
|
extern int mockMock_Init_Counter;
|
|
extern int mockMock_Verify_Counter;
|
|
extern int mockMock_Destroy_Counter;
|
|
extern int CMockMemFreeFinalCounter;
|
|
|
|
void mockMock_Init(void);
|
|
void mockMock_Verify(void);
|
|
void mockMock_Destroy(void);
|
|
|
|
#endif
|