Added doxygen-compatible comments
This commit is contained in:
parent
7004e4ae6d
commit
73fa28c71c
5 changed files with 1584 additions and 63 deletions
|
@ -25,16 +25,17 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
|
||||
/*! \brief return value of test case. Non-zero value means that the test failed */
|
||||
static int _testReturnValue;
|
||||
|
||||
void
|
||||
TestInit()
|
||||
TestCaseInit()
|
||||
{
|
||||
_testReturnValue = 0;
|
||||
}
|
||||
|
||||
void
|
||||
TestQuit()
|
||||
TestCaseQuit()
|
||||
{
|
||||
exit(_testReturnValue);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue