HomeAut
unittest.h
1 /*
2  * unittest.h
3  *
4  * Created on: 2016. nov. 24.
5  * Author: Vizi Gábor
6  * E-mail: vizi.gabor90@gmail.com
7  * Function: -
8  * Target: STM32Fx
9  * Version: -
10  * Last modified: 2016. nov. 24.
11  */
12 
13 #ifndef UNITTEST_H_
14 #define UNITTEST_H_
15 
16 
17 
18 /*------------------------------------------------------------------------------
19  * Global function declarations
20  *----------------------------------------------------------------------------*/
21 
22 void UnitTest_Start(const char *moduleName, const char *fileName);
23 void UnitTest_CheckResult(bool isValid, const char *errorString, uint32_t line);
24 void UnitTest_End(void);
25 
26 
27 
28 #endif /* UNITTEST_H_ */