A developer wants multiple test classes to use the same set of test data. How should the developer create the test data?
Answers
Answered by
0
A developer wants multiple test classes to use the same set of test data.
Explanation:
Steps to be followed
1. Creating a class of test utility.
2.To set up test data for different test cases, use a test utility method.
3. Execute all methods of testing in a class.
The last step is executing all the test methods of the test class by
Clicking on the Tests tab to run the same test run.
By expanding the latest test run, check the results in the Tests tab. The test run should be said to have passed all four tests.
Similar questions