Understand Unity Assertion Conventions
masterUnity assertions follow a standard parameter order to ensure consistency across different types. The general pattern is:
TEST_ASSERT_X( {modifiers}, {expected}, actual, {size/count} )
actual: The value being tested. This is the only parameter present in all assertion variants.modifiers: Optional masks, ranges, bit flag specifiers, or floating point deltas.expected: The value you expect theactualvalue to match. This is optional for assertions that only require anactualparameter (e.g., null checks).size/count: Used for string lengths, number of array elements, etc.