sparrowenclave
5 years agoOccasional Contributor
Running test step with context
 I have Soap Request test step name as Add and Groovy Script test step name as Run     In Run test step I have following code which is responsible to run Add test step     def stored = testRunner.test...
- 5 years agoAccording to the documentation, - the testRunner is a TestCaseRunner, it the interface to manage the TestCase.
 https://www.soapui.org/apidocs/soapui/DefaultPackage/TestCaseRunner.html
 - the context, is the running context of the TestCase, where you can find properties or step details.
 https://www.soapui.org/apidocs/soapui/DefaultPackage/TestCaseRunContext.html
 It's a bit more complex but it's the idea đ David. 
- the testRunner is a TestCaseRunner, it the interface to manage the TestCase.