testfwk.h

来自「Small Device C Compiler 面向Inter8051」· C头文件 代码 · 共 28 行

H
28
字号
#ifndef __TESTFWK_H#define __TESTFWK_H 1extern int __numTests;void __fail(const char *szMsg, const char *szCond, const char *szFile, int line);void __printf(const char *szFormat, ...) REENTRANT;#define ASSERT(_a) 	(__numTests++, (_a) ? (void)0 : __fail("Assertion failed", #_a, __FILE__, __LINE__))#define LOG(_a)		__printf _a#define FAIL()		FAILM("Failure")#define FAILM(_a)	__fail(_a, #_a, __FILE__, __LINE__)typedef void (*TESTFUNP)(void);// Provided by the suiteTESTFUNP *suite(void);const char *getSuiteName(void);#define NULL	0#define UNUSED(_a)	if (_a) { }#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?