This example shows how to run tests linked to requirements in a requirement set.
Open the ShortestPath project.
openProject("ShortestPath");
Load the shortest_path_func_reqs and shortest_path_tests_reqs requirement sets. Requirements in these requirement sets contain links to tests in graph_unit_tests.m.
status = struct with fields:
total: 8
passed: 5
failed: 0
unexecuted: 0
justified: 0
none: 3
Update and get the verification status for the shortest_path_tests_reqs requirement set to see if any tests linked to requirements in that requirement set were run.
updateVerificationStatus(testReqs);
status = getVerificationStatus(testReqs)
status = struct with fields:
total: 14
passed: 10
failed: 0
unexecuted: 3
justified: 0
none: 1
Run only the unexecuted tests linked to the requirement set.