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