I have a number of test cases using groovy.
I want to be able to have the test case fail but to carry on with the rest of the script. Tried using:
testRunner.fail( "It didn't work" )
also tried
assert false : "It didn't work"
but they both abort the test case even if the abort on error is unchecked.
Any ideas?