I converted a dynamically generated JUnit test suite to TestNG using a @Factory
annotation. The tests are generated by scanning a directory that contains severa
As carlin.scott suggested, extending XmlTest
works for this problem. However, I overrode toString()
to return the test name (instead of calling setName
). This has the advantage that the test name in the TestNG view is easier to read. By default, it contains additional information such as parameters and metagroups.