We have a vast amount of tests. We would like infinitest only to choose between tests that have been included in an .xml-file (i.e. a TestNG suite).
We do not want to put the annotation groups = { "shouldbetested" } in every testcase but rather feed the info from our .xml file into infinitest.
Is this possible?
Is it another tool that could do that for us?
Infinitest can filter out the tests you don't want to run using regular expressions in the
infinitest.filtersfile.Note that the class names include package names, so use
.*in front to match any package.