Я добавил в свой pom.xml следующий плагин для параллельного запуска тестовых классов
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<parallel>classes</parallel>
<threadCount>10</threadCount>
<systemPropertyVariables>
<profile.name>${profile.name}</profile.name>
</systemPropertyVariables>
<forkCount>1</forkCount>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
И у меня при запуске
@RunWith(Suite.class)
@Suite.SuiteClasses({
test_1.class,
test_2.class
})
как тест junit, он запускается последовательно, а не параллельно ... любая помощь ??