Hi,
I configured the maven-surefire-plugin (version 2.6) like the following,
using TestNG5.14:
<configuration>
<suiteXmlFiles>
<suiteXmlFile>01_setupsystem.xml</suiteXmlFile>
<suiteXmlFile>02_basistests.xml</suiteXmlFile>
<suiteXmlFile>03_Mandanten_parallel.xml</suiteXmlFile>
<suiteXmlFile>04_Karten_parallel.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
When I mvn clean install this project, the execution order of my tests
isn“t as expected, it starts with 02_basistests.xml.
The tests descriped in the suiteXmlFile itself could be executed in
parallel (parallel=methods) - but the <suiteXmlFiles> should be executed
in exactly the same order
as described in the pom.xml
Is there a way ?
Thanx, Torsten