Reputation: 1114
Lets suppose we have a very simple test case: navigate to the homepage of a website. I want to reuse this test case among different test plans for different environments (DEV, QA, PROD). Therefore the location of the service will change depending on the test plan I am using.
How can I ensure that when the tester sees the "Action" instruction in MTM it shows the correct URL for the current environment?
Can I do this based on test plans? Is there a different approach?
Upvotes: 2
Views: 1106
Reputation: 9783
You didn't mention that your test is automated so I will give you an answer for manual testing.
Test Plan
.Test Configurations
, one per environment. Description = Qa
& Link = http://qa.myservice/
Select test configurations for selected tests
and select the configurations (environments) that the test case will run.When your testers will run the test cases will select the correct link depending on the configuration.
Upvotes: 1