You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
291 B
13 lines
291 B
#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 //MOCK_MOCK_H
|
|
|