You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there is no mechanism to assert a number is between two other numbers aside from using TEST_ASSERT_X_WITHIN supports only symmetric ranges. I propose an assertion like TEST_ASSERT_X_WITHIN_RANGE(lower, upper, actual).
The text was updated successfully, but these errors were encountered:
memo to myself: There is already greater than, less than, etc... therefore no additional actual functions are needed. A macro could cover this with back to back existing calls.
Currently there is no mechanism to assert a number is between two other numbers aside from using
TEST_ASSERT_X_WITHIN
supports only symmetric ranges. I propose an assertion likeTEST_ASSERT_X_WITHIN_RANGE(lower, upper, actual)
.The text was updated successfully, but these errors were encountered: