Added doxygen-compatible comments

This commit is contained in:
Markus Kauppila 2011-05-30 11:53:59 +03:00
parent 7004e4ae6d
commit 73fa28c71c
5 changed files with 1584 additions and 63 deletions

View file

@ -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);
}