Question: How can you use Maven to run unit tests in parallel?

  1. It is not possible to do this.
  2. Implement the JUnit dependency and add a configuration that sets the parallel element to true.
  3. Specify the Maven Surefire Plugin and add a configuration that sets the parallel element to true.
  4. Move each test suite into a separate submodule.

Answer: The correct answer of the above question is Option C:Specify the Maven Surefire Plugin and add a configuration that sets the parallel element to true.