Reputation: 781
Is there a way to set Shared Parameters in VSTS on a test suite, so that all test cases in the test suite inherit from it and I can use the Shared Parameters on the test suite in every test case in the suite?
Upvotes: 0
Views: 2815
Reputation: 29966
Yes, when you create/update a test case in VSTS, you can "Insert Parameters" in the case. After the parameter is inserted, you can click "Convert to shared parameters" link to convert it to a shared parameters. And in other test cases, you can click "Add a shared parameter set" to use the shared parameters. Refer to this link for details: https://msdn.microsoft.com/en-us/library/dd997832.aspx
Upvotes: 2