mirror of
https://github.com/ThrowTheSwitch/Unity
synced 2025-02-08 10:18:44 -05:00
21 lines
598 B
C
21 lines
598 B
C
/* =========================================================================
|
|
Unity - A Test Framework for C
|
|
ThrowTheSwitch.org
|
|
Copyright (c) 2007-25 Mike Karlesky, Mark VanderVoord, & Greg Williams
|
|
SPDX-License-Identifier: MIT
|
|
========================================================================= */
|
|
|
|
#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
|