made unity internally consistent with fail and ignore macros having/not having message parameters

git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@87 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
This commit is contained in:
mkarlesky
2010-07-30 22:39:52 +00:00
parent 0cd87b0a2e
commit 8177f62867
2 changed files with 6 additions and 5 deletions

View File

@ -54,7 +54,8 @@
// Basic Fail and Ignore
//-------------------------------------------------------
#define TEST_FAIL(message) UNITY_TEST_FAIL(__LINE__, message)
#define TEST_FAIL_MESSAGE(message) UNITY_TEST_FAIL(__LINE__, message)
#define TEST_FAIL() UNITY_TEST_FAIL(__LINE__, NULL)
#define TEST_IGNORE_MESSAGE(message) UNITY_TEST_IGNORE(__LINE__, message)
#define TEST_IGNORE() UNITY_TEST_IGNORE(__LINE__, NULL)
#define TEST_ONLY()