Skip to content

Latest commit

 

History

History
65 lines (44 loc) · 1.78 KB

unit_test_assert.md

File metadata and controls

65 lines (44 loc) · 1.78 KB

code pal for ABAP > Documentation > Unit-Test Assert Validator

Unit-Test Assert Validator

What is the intent of the check?

This check searches for assertions in unit tests that do not fulfill any actual purpose.

How does the check work?

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.

How to solve the issue?

Change the actual (act) or expected (exp) value(s) to represent a meaningful assertion.

What to do in case of exception?

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 

Example

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. 

Further Readings & Knowledge