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 CasePriorityDependencies
Test A3-
Test B1TestD
TestC2Test A
Test D3*
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 Bhas the highest priority (1) and depends onTest D.
Test Dshould be executed beforeTest B.
Test Chas a medium priority (2) and depends onTest A.
Test Acan be executed at any time since it has no dependencies.
Considering these dependencies and priorities,Test Dshould be executed first, followed byTest B. After that,Test Aand finallyTest C. Therefore, the correct sequence isD-B-A-C.
Currently there are no comments in this discussion, be the first to comment!