get Max Parallel Forks
Returns the maximum number of test processes to start in parallel.
By default, Gradle executes a single test class at a time.
- A value of
1means to only execute a single test class in a single test process at a time. This is the default. - A value of
Nmeans that up toNtest processes will be started to execute test classes. This can improve test execution time by running multiple test classes in parallel.
Return
The maximum number of forked test processes.