Code Coverage for Failed testcases

In reply to sreevani.raichur@gmail.com:

Hi
Can you clarify what you mean by “in my coverage report it showing as test is passed. I don’t have a functional coverage model here.”.

How does a coverage report show it as passed? Is it because you collect successful coverage on the assert statement in your code? Because if so, then because coverage is merged across all testcases, you will hit (cover) that assertion on the passing testcases, and the overall merged result will show that the assertion has been hit.

Richard