Re: Injecting JUnit-4 Parallel Execution Parameters in Surefire Plugin

2022-11-29 Thread Romain Manni-Bucau
Hi, Did you check these classes: -> https://github.com/apache/maven-surefire/blob/b9b2381a3dba6574bb69bd91d45fe0edea29c779/surefire-providers/surefire-junit47/src/main/java/org/apache/maven/surefire/junitcore/JUnitCoreParameters.java#L73 -> https://github.com/apache/maven-surefire/blob/79db90338fb

Fwd: Injecting JUnit-4 Parallel Execution Parameters in Surefire Plugin

2022-11-29 Thread Kamalpreet Kaur
Hi Everyone, I'm currently creating a package from where I would want to set JUnit parallel execution parameters like below : *classesAndMethods 1 1 false* I'm planning to use Instrumentation API to inject these parameters. I tried to find the correct place where I can do so, but failed to find