public class TestNgRunner
Integration code for running TestNG tests in Groovy.
| Type Params | Return Type | Name and description | 
|---|---|---|
|  | boolean | canRun(Class<?> scriptClass, GroovyClassLoader loader)Utility method to check via reflection if the parsed class appears to be a TestNG test, i.e. checks whether it appears to be using the relevant TestNG annotations. | 
|  | Object | run(Class<?> scriptClass, GroovyClassLoader loader)Utility method to run a TestNG test. | 
Utility method to check via reflection if the parsed class appears to be a TestNG test, i.e. checks whether it appears to be using the relevant TestNG annotations.
scriptClass -  the class we want to checkloader -  the GroovyClassLoader to use to find classesUtility method to run a TestNG test.
scriptClass -  the class we want to run as a testloader -  the class loader to use