Submit and vote on feature ideas.

Welcome to the new Parasoft forums! We hope you will enjoy the site and try out some of the new features, like sharing an idea you may have for one of our products or following a category.

How to use context.report in output extension tool

kram_soatest
kram_soatest Posts: 14
edited July 2018 in SOAtest

Hi,

I am doing some custom validations. I added extenstion tool as an output to response. How can I make the custom tool failure with a error message which I can see in the report while running using cli
For eg in extension tool I have a condition
If a==1
Result pass
Else
Result fail with message “a is not 1”
I tried adding context.report(“a is not 1) in the else part but no luck

Best Answer

  • kram_soatest
    kram_soatest Posts: 14
    Answer ✓

    My extension tool had json assertor and my tool failed always based on the assertor and not on context.report. After removed the json assertor context.report working fine. Thank you