I'm having 15 requests(test cases) in the executed collection. How can I calculate how many test cases got passed and failed in my 15 requests.
My Question in detail:
- In the below mentioned result, as per my knowledge test scripts are considering as number of test cases executed. Assertions are the validating conditions.
- 7 Test cases are reporting as the failure in the report. But if I went to assertion errors those are also the actual failures I.e even one assertion is failing in the test request, it should fail but those are not considering as test script failure.
- How can I consider the fail count which is not considering the assertion failure? or any other way to calculate pass or fail count from this report.
- Here is the command I'm using for newman report
newman run Collection_Path -d URL_path --reporters cli,json –disable-Unicode;
My collection run report for your reference