src.demo.ExtensionDemo.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gbench Show documentation
Show all versions of gbench Show documentation
GBench, benchmarking framework for Groovy
benchmark(measureCpuTime:false, verbose:true, warmUpTime:0) {
'foo' { Thread.sleep(1000) }
'bar' { Thread.sleep(2000) }
}.prettyPrint()
;
{ ->
'baz' { Thread.sleep(1000) }
'qux' { Thread.sleep(2000) }
}
.benchmark(measureCpuTime:false, verbose:true, warmUpTime:0)
.prettyPrint()