Added supprot for TestNG 7.10.0

This commit is contained in:
Erik C. Thauvin 2024-04-07 14:23:35 -07:00
parent 645e6d104a
commit d74ee9d819
Signed by: erik
GPG key ID: 776702A6A2DA330E
6 changed files with 44 additions and 8 deletions

View file

@ -232,7 +232,8 @@ public class TestNgOperation extends TestOperation<TestNgOperation, List<String>
}
/**
* Should TestNG consider failures in Data Providers as test failures.
* Should TestNG generate results on a per suite basis by creating a sub directory for each suite and dumping
* results into it.
*
* <p>Default is {@code false}</p>.
*
@ -345,6 +346,29 @@ public class TestNgOperation extends TestOperation<TestNgOperation, List<String>
return this;
}
/**
* An implementation of {@code ListenerComparator} that will be used by TestNG to determine order of execution for
* listeners.
*
* @param listenerComparator the listener comparator
* @return this operation instance
*/
public TestNgOperation listenerComparator(String listenerComparator) {
options.put("-listenercomparator", listenerComparator);
return this;
}
/**
* The factory used to create TestNG listeners.
*
* @param listenerFactory the listener factory
* @return this operation instance
*/
public TestNgOperation listenerFactory(String listenerFactory) {
options.put("-listenerfactory", listenerFactory);
return this;
}
/**
* Set the Level of verbosity.
*
@ -429,6 +453,18 @@ public class TestNgOperation extends TestOperation<TestNgOperation, List<String>
return this;
}
/**
* Fully qualified class name that implements {@code org.testng.ITestObjectFactory} which can be used to create
* test class and listener instances.
*
* @param objectFactory the object factory
* @return this operation instance
*/
public TestNgOperation objectFactory(String objectFactory) {
options.put("-objectfactory", objectFactory);
return this;
}
/**
* The list of {@code .class} files or class names implementing {@code ITestRunnerFactory}.
*