You are a tester working on a critical project. Based on the risk analysis you need to decide on the order of test execution. Which of the following lists the correct sequence of test execution? Priority 1 is the highest and Priority 3 is the lowest priority.
Test Case Priority Dependencies
Test A 3 -
Test B 1 TestD
TestC 2 Test A
Test D 3 *
When deciding on the order of test execution based on priorities and dependencies, the correct sequence should consider both the priority levels and any dependencies between test cases. Here's the analysis:
Test B has the highest priority (1) and depends on Test D.
Test D should be executed before Test B.
Test C has a medium priority (2) and depends on Test A.
Test A can be executed at any time since it has no dependencies.
Considering these dependencies and priorities, Test D should be executed first, followed by Test B. After that, Test A and finally Test C. Therefore, the correct sequence is D-B-A-C.
Cory
2 days agoStefania
23 days agoNelida
25 days agoStefania
26 days ago