6. Regression Testing#

The automatic test-generation and execution offered by Reactis for C enables engineers to easily check whether a program conforms to the behavior of a previous version.

A crucial aspect of the tests generated by Reactis Tester is that they include all program outputs as well as inputs. Hence these tests contain all the information needed to ensure that a revised version of a program conforms to a previous version.

_images/regression-testing.svg

Fig. 6.1 Performing regression testing with Reactis for C.#

The workflow shown Figure 6.1the preceding diagram shows how to use Reactis for C to perform regression testing. The basic steps required to perform regression testing with Reactis for C are as follows:

  1. Generate a test suite from the older version of the C program.

  2. For each test in the suite, execute the new version of the software using the input values contained in the test.

  3. Compare the output values produced by the software with those stored in the test.

  4. Record any discrepancies.

The net effect of regression testing with Reactis for C is better-quality software at a lower cost. Because good test data is generated and run automatically, less engineer-time is required to create and run tests.