mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-26 09:51:36 +01:00
There was no reason that CMock init and destroy calls should be in the protected blocks. teardown is more flexible if verify is called afterwards.
This commit is contained in:
@@ -6,21 +6,21 @@
|
||||
Unity.CurrentTestName = #TestFunc; \
|
||||
Unity.CurrentTestLineNumber = TestLineNum; \
|
||||
Unity.NumberOfTests++; \
|
||||
CMock_Init(); \
|
||||
if (TEST_PROTECT()) \
|
||||
{ \
|
||||
CEXCEPTION_T e; \
|
||||
Try { \
|
||||
CMock_Init(); \
|
||||
setUp(); \
|
||||
TestFunc(); \
|
||||
CMock_Verify(); \
|
||||
} Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
|
||||
} \
|
||||
CMock_Destroy(); \
|
||||
if (TEST_PROTECT() && !TEST_IS_IGNORED) \
|
||||
{ \
|
||||
tearDown(); \
|
||||
CMock_Verify(); \
|
||||
} \
|
||||
CMock_Destroy(); \
|
||||
UnityConcludeTest(); \
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user