I have a Data-driven test, which basically reads a row from a file, perform a SOAP request, wait a bit, then loops back to the beginning.
I'd like to have a global assertion on the average time of the SOAP request, but which is triggered only at the end of the Test Case (because I want it to fail the Test Case if the average response time is higher than the threshold).
Is there a way to do this? How can I define in the Test Case assertion that it targets only the SOAP request, and not all the steps?