xref: /third_party/cJSON/tests/unity/test/testdata/cmock.h (revision 9750e409)
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/cJSON/tests/unity/test/testdata/
1#ifndef CMOCK_H
2#define CMOCK_H
3
4int CMockMemFreeFinalCounter = 0;
5int mockMock_Init_Counter = 0;
6int mockMock_Verify_Counter = 0;
7int mockMock_Destroy_Counter = 0;
8
9void CMock_Guts_MemFreeFinal(void) { CMockMemFreeFinalCounter++; }
10void mockMock_Init(void)           { mockMock_Init_Counter++;    }
11void mockMock_Verify(void)         { mockMock_Verify_Counter++;  }
12void mockMock_Destroy(void)        { mockMock_Destroy_Counter++; }
13
14#endif //CMOCK_H
15

Indexes created Thu Nov 07 10:32:03 CST 2024