I do a request, get a reply, and would like to pass the returned body to another function which will perform various tests on that string.
i.e. I want to have tests of unlimited complexity which compose with the gatling check system.
If a test is failed I want to emit a failure just like the inbuilt tests do.
e.g.
check(bodyString.testAgainst(specialCheckFunction))
How would I do that?
Thanks.
Dino.