@@ -129,22 +129,22 @@ and double assertions (see immediately following section).
129129
130130### TEST_ASSERT_EACH_EQUAL_X Variants
131131
132- Unity provides a collection of assertions for arrays containing a variety of
133- types which can be compared to a single value as well. These are documented in
134- the Each Equal section below. these are almost on par with the ` _MESSAGE `
132+ Unity provides a collection of assertions for arrays containing a variety of
133+ types which can be compared to a single value as well. These are documented in
134+ the Each Equal section below. these are almost on par with the ` _MESSAGE `
135135variants of Unity's Asserts in that for pretty much any Unity type assertion you
136136can inject _ EACH_EQUAL and run assertions on an entire block of memory.
137137
138138 TEST_ASSERT_EACH_EQUAL_TYPEX( expected, actual, {size/count} )
139139
140140"Expected" is a single value to compare to.
141141"Actual" is an array where each element will be compared to the expected value.
142- "Size/count" is one of two parameters necessary to establish the number of array
142+ "Size/count" is one of two parameters necessary to establish the number of array
143143elements and perhaps the length of elements within the array.
144144
145145Notes:
146146- The ` _MESSAGE ` variant convention still applies here to Each Equal assertions.
147- - Assertions for handling Each Equal of floating point values are grouped with
147+ - Assertions for handling Each Equal of floating point values are grouped with
148148float and double assertions (see immediately following section).
149149
150150
@@ -409,10 +409,10 @@ match. Failure messages specify the array index of the failed comparison.
409409` expected ` are single values and ` actual ` are arrays. ` num_elements ` specifies
410410the number of elements in the arrays to compare.
411411
412- ` _HEX ` assertions produce failure messages with expected and actual array
412+ ` _HEX ` assertions produce failure messages with expected and actual array
413413contents formatted in hexadecimal.
414414
415- Assertions fail upon the first element in the compared arrays found not to
415+ Assertions fail upon the first element in the compared arrays found not to
416416match. Failure messages specify the array index of the failed comparison.
417417
418418#### ` TEST_ASSERT_EACH_EQUAL_INT (expected, actual, num_elements) `
@@ -710,4 +710,7 @@ with zeros.
7107102 . You're going to have to be careful of assertions that perform signed
711711operations, particularly ` TEST_ASSERT_INT_WITHIN ` .Such assertions might wrap
712712your ` int ` in the wrong place, and you could experience false failures. You can
713- always back down to a simple ` TEST_ASSERT ` and do the operations yourself.
713+ always back down to a simple ` TEST_ASSERT ` and do the operations yourself.
714+
715+
716+ * Find The Latest of This And More at [ ThrowTheSwitch.org] ( https://throwtheswitch.org ) *
0 commit comments