Fixing and Rerunning the Failed Test

You need to fix the test so that it is checking for the correct distance.
  1. Switch back to the COBOL perspective.
  2. With MFUPD_aircode.cpy displayed in the editor, replace the value 4787 with 7703, so that the IF statement now reads:
               if function numval(distance-km) not equal 7703
                   string "Incorrect distance in kilometers returned - " 
                           distance-km delimited by size
                           x"0" delimited by size
                           into errormessage
                   end-string
                   call MFU-ASSERT-FAIL-Z using errormessage
               end-if
  3. Press Ctrl+S to save the changes.
  4. In the Micro Focus Unit Testing view, click (Run All).

    The failed test is rerun, and now passes.

You can incorporate code coverage into your test runs, which shows the range of execution of your source during the test run.