Speed up regression tests with the ABAP debugger
Speed up your regression tests with the ABAP debugger - A.Regression testing: Regression testing mean is to compare the result a piece of software is giving before and after changes were made to the source-code. Sustainable development meets the customer requirement no unwanted changes of existing behavior.. The regression tests are part of sustainable development, because they should fail, if enhancements or refactoring's break existing behavior. B.Unit-tests: The Unit-tests can be executed as regression tests.. Before they can be executed, values must be assigned to input parameters, & to the parameters of the test doubles and to the expected results (test data). C.How to determine the test-data: IF source-code is already covered by unit-tests or mainly free of technical debts, this is quite a simple task. But things getting difficult, if nobody developed unit-tests before, test-data unknown and the source-code contains high technical debts. First approach we can set a breakp