|
@ -0,0 +1,57 @@ |
|
|
|
|
|
/* AUTOGENERATED FILE. DO NOT EDIT. */ |
|
|
|
|
|
|
|
|
|
|
|
/*=======Automagically Detected Files To Include=====*/ |
|
|
|
|
|
#include "unity.h" |
|
|
|
|
|
|
|
|
|
|
|
int GlobalExpectCount; |
|
|
|
|
|
int GlobalVerifyOrder; |
|
|
|
|
|
char* GlobalOrderError; |
|
|
|
|
|
|
|
|
|
|
|
/*=======External Functions This Runner Calls=====*/ |
|
|
|
|
|
extern void setUp(void); |
|
|
|
|
|
extern void tearDown(void); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*=======Mock Management=====*/ |
|
|
|
|
|
static void CMock_Init(void) |
|
|
|
|
|
{ |
|
|
|
|
|
GlobalExpectCount = 0; |
|
|
|
|
|
GlobalVerifyOrder = 0; |
|
|
|
|
|
GlobalOrderError = NULL; |
|
|
|
|
|
} |
|
|
|
|
|
static void CMock_Verify(void) |
|
|
|
|
|
{ |
|
|
|
|
|
} |
|
|
|
|
|
static void CMock_Destroy(void) |
|
|
|
|
|
{ |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/*=======Setup (stub)=====*/ |
|
|
|
|
|
void setUp(void) {} |
|
|
|
|
|
|
|
|
|
|
|
/*=======Teardown (stub)=====*/ |
|
|
|
|
|
void tearDown(void) {} |
|
|
|
|
|
|
|
|
|
|
|
/*=======Test Reset Options=====*/ |
|
|
|
|
|
void resetTest(void); |
|
|
|
|
|
void resetTest(void) |
|
|
|
|
|
{ |
|
|
|
|
|
tearDown(); |
|
|
|
|
|
CMock_Verify(); |
|
|
|
|
|
CMock_Destroy(); |
|
|
|
|
|
CMock_Init(); |
|
|
|
|
|
setUp(); |
|
|
|
|
|
} |
|
|
|
|
|
void verifyTest(void); |
|
|
|
|
|
void verifyTest(void) |
|
|
|
|
|
{ |
|
|
|
|
|
CMock_Verify(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/*=======MAIN=====*/ |
|
|
|
|
|
int main(void) |
|
|
|
|
|
{ |
|
|
|
|
|
UnityBegin("test_casualQuiz.c"); |
|
|
|
|
|
|
|
|
|
|
|
return UnityEnd(); |
|
|
|
|
|
} |