I have several TestNG collection files in my multi-module java project, the structure of which looks like this:
project\ module1\src\test\resources\ suite1.xml suite2.xml module2\src\test\resources\ suite3.xml
Is it possible to create a launch configuration, including all of these packages in IntelliJ IDEA?
I can create a separate configuration for each of them through Run/Debug Configurations - TestNG - Configuration - Suite , but I see no way to select several files there.
I cannot combine all test packages into one set, because some tests use Before / After Suite methods.
I am using IntelliJ IDEA 14.1.2 Community edition, TestNG 6.1.1.
source share