Forum Discussion

davidsilva's avatar
davidsilva
New Contributor
14 years ago

java Thread not executing on Groovy Script (TestStep)

Hello,

I'm trying to run a thread on a groovy script like this:

Thread d = new Thread(){
public void run(){
log.info "Hello"
}
}
d.start()

And nothing is the printed to the log, no error or exception. I'm using version 4.0.1 of SoapUI

1 Reply

  • davidsilva's avatar
    davidsilva
    New Contributor
    I've got it!

    The thread is being executed but the log is printed only to the console