mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-25 09:21:36 +01:00
- support arrays of integers
- fixed bug when reporting problems with large integers - fixed bug in test suite when checking for expected failures. git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@22 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -147,6 +147,26 @@ TEST_ASSERT_EQUAL_HEX_MESSAGE(expected, actual, message)
|
||||
|
||||
Another way of calling TEST_ASSERT_EQUAL_HEX32_MESSAGE
|
||||
|
||||
------------------------------------
|
||||
Numerical Assertions: Integer Arrays
|
||||
------------------------------------
|
||||
|
||||
TEST_ASSERT_EQUAL_INT_ARRAY(expected, actual, num_elements)
|
||||
|
||||
Compare two arrays for equality and display errors as signed integers.
|
||||
|
||||
TEST_ASSERT_EQUAL_UINT_ARRAY(expected, actual, num_elements)
|
||||
|
||||
Compare two arrays for equality and display errors as unsigned integers.
|
||||
|
||||
TEST_ASSERT_EQUAL_HEX32_ARRAY(expected, actual, num_elements)
|
||||
|
||||
Compare two arrays for equality and display errors as 32-bit hex values.
|
||||
|
||||
TEST_ASSERT_EQUAL_HEX_ARRAY(expected, actual, num_elements)
|
||||
|
||||
Another way of calling TEST_ASSERT_EQUAL_HEX32_ARRAY.
|
||||
|
||||
-----------------------------
|
||||
Numerical Assertions: Bitwise
|
||||
-----------------------------
|
||||
|
||||
Reference in New Issue
Block a user