/third_party/unity/test/tests/ |
H A D | test_unity_integers_64.c | 41 UNITY_INT64 expected[] = {12345000, -12344995, 12345005}; in testInt64ArrayWithinDelta() 42 UNITY_INT64 actualSmallDelta[] = {12345001, -12344996, 12345005}; in testInt64ArrayWithinDelta() 43 UNITY_INT64 actualBigDelta[] = {12345101, -12344896, 12345055}; in testInt64ArrayWithinDelta() 55 UNITY_INT64 expected[] = {12345000, -12344995, 12345005}; in testInt64ArrayWithinDeltaAndMessage() 56 UNITY_INT64 actualSmallDelta[] = {12345001, -12344996, 12345005}; in testInt64ArrayWithinDeltaAndMessage() 57 UNITY_INT64 actualBigDelta[] = {12345101, -12344896, 12345055}; in testInt64ArrayWithinDeltaAndMessage() 69 UNITY_INT64 expected[] = {12345000, -12344995, 12345005}; in testInt64ArrayNotWithinDelta() 70 UNITY_INT64 actualBigDelta[] = {12345101, -12344896, 12345055}; in testInt64ArrayNotWithinDelta() 83 UNITY_INT64 expected[] = {12345000, -12344995, 12345005}; in testInt64ArrayNotWithinDeltaAndMessage() 84 UNITY_INT64 actualBigDelt in testInt64ArrayNotWithinDeltaAndMessage() [all...] |
H A D | test_unity_arrays.c | 41 UNITY_INT64 expected[] = {12345000, -12344995, 12345005}; in testInt64ArrayWithinDelta() 42 UNITY_INT64 actualSmallDelta[] = {12345001, -12344996, 12345005}; in testInt64ArrayWithinDelta() 43 UNITY_INT64 actualBigDelta[] = {12345101, -12344896, 12345055}; in testInt64ArrayWithinDelta() 55 UNITY_INT64 expected[] = {12345000, -12344995, 12345005}; in testInt64ArrayWithinDeltaAndMessage() 56 UNITY_INT64 actualSmallDelta[] = {12345001, -12344996, 12345005}; in testInt64ArrayWithinDeltaAndMessage() 57 UNITY_INT64 actualBigDelta[] = {12345101, -12344896, 12345055}; in testInt64ArrayWithinDeltaAndMessage() 69 UNITY_INT64 expected[] = {12345000, -12344995, 12345005}; in testInt64ArrayNotWithinDelta() 70 UNITY_INT64 actualBigDelta[] = {12345101, -12344896, 12345055}; in testInt64ArrayNotWithinDelta() 83 UNITY_INT64 expected[] = {12345000, -12344995, 12345005}; in testInt64ArrayNotWithinDeltaAndMessage() 84 UNITY_INT64 actualBigDelt in testInt64ArrayNotWithinDeltaAndMessage() [all...] |
/third_party/cJSON/tests/unity/src/ |
H A D | unity.c | 639 expect_val = *(UNITY_PTR_ATTRIBUTE const UNITY_INT64*)expected; in UnityAssertEqualIntArray() 640 actual_val = *(UNITY_PTR_ATTRIBUTE const UNITY_INT64*)actual; in UnityAssertEqualIntArray() 1227 UNITY_INT64 i64; 1251 UnityQuickCompare.i64 = (UNITY_INT64)num; in UnityNumToPtr()
|
H A D | unity_internals.h | 126 typedef signed long long UNITY_INT64; typedef 129 typedef signed long UNITY_INT64; typedef 134 typedef UNITY_INT64 UNITY_INT; 146 #define UNITY_PTR_TO_INT UNITY_INT64 771 #define UNITY_TEST_ASSERT_EACH_EQUAL_INT64(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT64)expected, 8), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64, UNITY_ARRAY_TO_VAL) 773 #define UNITY_TEST_ASSERT_EACH_EQUAL_HEX64(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT64)expected, 8), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64, UNITY_ARRAY_TO_VAL)
|
/third_party/unity/src/ |
H A D | unity.c | 844 expect_val = *(UNITY_PTR_ATTRIBUTE const UNITY_INT64*)expected; in UnityAssertEqualIntArray() 845 actual_val = *(UNITY_PTR_ATTRIBUTE const UNITY_INT64*)actual; in UnityAssertEqualIntArray() 846 increment = sizeof(UNITY_INT64); in UnityAssertEqualIntArray() 1504 expect_val = *(UNITY_PTR_ATTRIBUTE const UNITY_INT64*)expected; in UnityAssertNumbersArrayWithin() 1505 actual_val = *(UNITY_PTR_ATTRIBUTE const UNITY_INT64*)actual; in UnityAssertNumbersArrayWithin() 1506 increment = sizeof(UNITY_INT64); in UnityAssertNumbersArrayWithin() 1831 UNITY_INT64 i64; 1855 UnityQuickCompare.i64 = (UNITY_INT64)num; in UnityNumToPtr()
|
H A D | unity_internals.h | 180 typedef signed long long UNITY_INT64; typedef 183 typedef signed long UNITY_INT64; typedef 188 typedef UNITY_INT64 UNITY_INT; 200 #define UNITY_PTR_TO_INT UNITY_INT64 1033 #define UNITY_TEST_ASSERT_EACH_EQUAL_INT64(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT64)(expected), 8), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64, UNITY_ARRAY_TO_VAL) 1035 #define UNITY_TEST_ASSERT_EACH_EQUAL_HEX64(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT64)(expected), 8), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64, UNITY_ARRAY_TO_VAL)
|
/third_party/cJSON/tests/unity/test/tests/ |
H A D | testunity.c | 3500 UNITY_INT64 v0, v1; in testEqualInt64s() 3501 UNITY_INT64 *p0, *p1; in testEqualInt64s() 3503 v0 = (UNITY_INT64)0x9876543201234567; in testEqualInt64s() 3504 v1 = (UNITY_INT64)0x9876543201234567; in testEqualInt64s() 3556 UNITY_INT64 v0, v1; in testNotEqualInt64s() 3572 UNITY_INT64 v0, v1; in testNotEqualHex64sIfSigned() 3723 UNITY_INT64 p0[] = {1, 8, 987, -65132}; in testEqualInt64Arrays() 3724 UNITY_INT64 p1[] = {1, 8, 987, -65132}; in testEqualInt64Arrays() 3725 UNITY_INT64 p2[] = {1, 8, 987, -2}; in testEqualInt64Arrays() 3726 UNITY_INT64 p in testEqualInt64Arrays() [all...] |