mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-25 17:31: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:
@@ -48,6 +48,14 @@ void testNotEqualMemory1(void);
|
||||
void testNotEqualMemory2(void);
|
||||
void testNotEqualMemory3(void);
|
||||
void testNotEqualMemory4(void);
|
||||
void testEqualIntArrays(void);
|
||||
void testNotEqualIntArrays1(void);
|
||||
void testNotEqualIntArrays2(void);
|
||||
void testNotEqualIntArrays3(void);
|
||||
void testEqualUIntArrays(void);
|
||||
void testNotEqualUIntArrays1(void);
|
||||
void testNotEqualUIntArrays2(void);
|
||||
void testNotEqualUIntArrays3(void);
|
||||
void testProtection(void);
|
||||
|
||||
|
||||
@@ -113,6 +121,14 @@ int main(void)
|
||||
RUN_TEST(testNotEqualMemory2);
|
||||
RUN_TEST(testNotEqualMemory3);
|
||||
RUN_TEST(testNotEqualMemory4);
|
||||
RUN_TEST(testEqualIntArrays);
|
||||
RUN_TEST(testNotEqualIntArrays1);
|
||||
RUN_TEST(testNotEqualIntArrays2);
|
||||
RUN_TEST(testNotEqualIntArrays3);
|
||||
RUN_TEST(testEqualUIntArrays);
|
||||
RUN_TEST(testNotEqualUIntArrays1);
|
||||
RUN_TEST(testNotEqualUIntArrays2);
|
||||
RUN_TEST(testNotEqualUIntArrays3);
|
||||
RUN_TEST(testProtection);
|
||||
|
||||
UnityEnd();
|
||||
|
||||
Reference in New Issue
Block a user