[Aceunit-commit] SF.net SVN: aceunit:[488] trunk/src/native/AceUnit.c
Status: Beta
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2008-12-03 21:50:30
|
Revision: 488
http://aceunit.svn.sourceforge.net/aceunit/?rev=488&view=rev
Author: christianhujer
Date: 2008-12-03 21:50:28 +0000 (Wed, 03 Dec 2008)
Log Message:
-----------
Removed unnecessary conditioning of running after.
Modified Paths:
--------------
trunk/src/native/AceUnit.c
Modified: trunk/src/native/AceUnit.c
===================================================================
--- trunk/src/native/AceUnit.c 2008-12-03 21:19:57 UTC (rev 487)
+++ trunk/src/native/AceUnit.c 2008-12-03 21:50:28 UTC (rev 488)
@@ -180,11 +180,9 @@
globalLog(testCaseFailed, runnerData->recentError);
runnerData->testCaseFailureCount++;
}
- if (ranBeforeClass) {
- ACEUNIT_PRE_AFTER
- invokeAll(after);
- ACEUNIT_POST_AFTER
- }
+ ACEUNIT_PRE_AFTER
+ invokeAll(after);
+ ACEUNIT_POST_AFTER
#ifdef ACEUNIT_LOG_TESTCASE
globalLog(testCaseEnded, runnerData->currentTestId);
#endif
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|