-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
26 lines (21 loc) · 742 Bytes
/
main.c
File metadata and controls
26 lines (21 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*- Header files -------------------------------------------------------------*/
#include <stdio.h>
#include <CuTest.h>
/*- Test modules -------------------------------------------------------------*/
EXTERN_TEST_MODULE(TestMyUnit);
/*!****************************************************************************
* @brief
* Test Runner main entry point
*
* @return (int) Test run result
* @retval EXIT_SUCCESS Test run successful
* @retval EXIT_FAILURE Test run not successful
* @date xx.xx.xxxx
******************************************************************************/
int main(void)
{
BEGIN_TEST_RUN();
RUN_TEST_MODULE(TestMyUnit);
END_TEST_RUN();
return GET_RUN_RESULT();
}