I think that most people now use branch coverage as an indicator of quality for operator coverage, but one metric that I have not seen much about is the quality of the test itself.
For example, I could write tests that execute many branches in my code, but none of the tests do yes. Therefore, while I was executing a lot of my branches, I did not check the return conditions properly. Is there any way to capture this label "assert"?
Do people use any indicators for the tests themselves?
source
share