Fixed AssertEquals.

This commit is contained in:
Markus Kauppila 2011-07-14 20:33:18 +03:00
parent 7de8abe0c4
commit 66677c0ad1
9 changed files with 30 additions and 35 deletions

View file

@ -586,9 +586,11 @@ LoadCountFailedAssertsFunction(void *suite) {
/*
* Execute the test
* Execute a test. Loads the test, executes it and
* returns the tests return value to the caller.
*
* \param testItem Test to be executed
* \param test result
*/
int
RunTest(TestCase *testItem) {
@ -629,8 +631,8 @@ void KillHungTest(int signum) {
}
/*!
* Executes a test case. Loads the test, executes it and
* returns the tests return value to the caller.
* Sets up a test case. Decideds wheter the test will
* be executed in-proc or out-of-proc.
*
* \param testItem The test case that will be executed
* \return The return value of the test. Zero means success, non-zero failure.