code pal for ABAP > Documentation > Unit-Test Assert Validator
This check searches for assertions in unit tests that do not fulfill any actual purpose.
The check looks at the parameters act
and exp
of calls to methods whose name contains assert
. It raises a finding if both parameters are identical or if both are literals.
Change the actual (act
) or expected (exp
) value(s) to represent a meaningful assertion.
In exceptional cases, you can suppress this finding by using the pseudo comment "#EC UT_ASSERT
which has to be placed after the assertion statement:
cl_abap_unit_assert=>assert_equals( act = sum
exp = sum ). "#EC UT_ASSERT
Before the check:
METHOD sum.
" given
DATA(first) = 10.
DATA(second) = 10.
" when
DATA(sum) = first + second.
" then
cl_abap_unit_assert=>assert_equals( act = sum
exp = sum ).
ENDMETHOD.
After the check:
METHOD sum.
" given
DATA(first) = 10.
DATA(second) = 10.
" when
DATA(sum) = first + second.
" then
cl_abap_unit_assert=>assert_equals( act = sum
exp = 20 ).
ENDMETHOD.