We have a lot of integration tests that are using Spring. We'd like not to create separate JVM processes per tests (maxParallelForks option) or only run parallel builds in the multimodule project (--parallel).
We would like for a single test class execute tests in parallel like in Maven with http://maven.apache.org/surefire/maven-surefire-plugin/examples/fork-options-and-parallel-execution.html and the parallel option
The important thing to remember with the parallel option is: the concurrency happens within the same JVM process.
Is it possible to be achieved in Gradle?