1
0
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:
mvandervoord
2009-04-10 18:21:21 +00:00
parent 897d2a3746
commit 54eba93094
7 changed files with 348 additions and 66 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -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
-----------------------------