I wonder if we have a way to distinguish between the result of tests that cover 2 different use cases.
to illustrate my question:
Issue #1 - AAA
Issue #2 - BBB
Test Case #3- Can Cover both Issue#1 and Issue #2, but Issue#1 test result is passed and for the second issue it's failed. So the status of this test case (#3) it's also passed and also failed. So what is the best case to manage this situation? we want to avoid adding duplicated tests only because of this limitation.
Thanks