I am currently using the code coverage analyzer to make sure test cases cover all the logic run on the MCU.
However, the line, function and instruction coverage options available only check for statement coverage. I would like to also consider the "empty" branches in control structures without explicitly including else statements in the code. Is it possible to check for branch coverage using the XDS560 Pro Trace?
For example, I have an if statement without an else statement and I only run tests where the if statement always evaluates true, only 1/2 of the branches should be covered in branch coverage analysis while the code is completely covered in statement coverage analysis.
Thank you in advance!