// discard?
// if( discard && stepResult.getStatus() == TestStepStatus.OK &&
// getTestRunnable().getDiscardOkResults()
if (discard && stepResult.getStatus() == TestStepStatus.OK && getTestCase().getDiscardOkResults()
&& !stepResult.isDiscarded()) {
stepResult.discard();
}
if (process && stepResult.getStatus() == TestStepStatus.FAILED) {
// if( getTestRunnable().getFailOnError() )
if (getTestCase().getFailOnError()) {