Page 1 of 1

Replacing one module with another within test suite

Posted: Mon Dec 08, 2014 11:46 am
by Deepa_8746
How does one replace a module used multiple places in a test suite with another module within a test suite(across multiple test suites would be even better)

Re: Replacing one module with another within test suite

Posted: Tue Dec 09, 2014 3:12 pm
by krstcs
One-at-a-time.

There is no "easy" way to do it. You will need to manually go through each spot that the old test module is used and replace it with the new one.

One thing you could do is to put a "Report - ERROR" into the OLD module and then run the test suite locally. This will cause the report to show an error in each instance of the old file so you can find them all. Then replace them with the new one as you find them.