Class TestNGOptions

java.lang.Object
org.gradle.api.tasks.testing.TestFrameworkOptions
org.gradle.api.tasks.testing.testng.TestNGOptions

public class TestNGOptions extends TestFrameworkOptions
The TestNG specific test options.
  • Field Details

  • Constructor Details

    • TestNGOptions

      public TestNGOptions(File projectDir)
  • Method Details

    • suiteXmlBuilder

      public MarkupBuilder suiteXmlBuilder()
    • suites

      public void suites(String... suiteFiles)
      Add suite files by Strings. Each suiteFile String should be a path relative to the project root.
    • getProjectDir

      protected File getProjectDir()
    • suites

      public void suites(File... suiteFiles)
      Add suite files by File objects.
    • getSuites

      public List<File> getSuites(File testSuitesDir)
    • includeGroups

      public TestNGOptions includeGroups(String... includeGroups)
    • excludeGroups

      public TestNGOptions excludeGroups(String... excludeGroups)
    • useDefaultListeners

      public TestNGOptions useDefaultListeners()
    • useDefaultListeners

      public TestNGOptions useDefaultListeners(boolean useDefaultListeners)
    • propertyMissing

      public Object propertyMissing(String name)
    • methodMissing

      public Object methodMissing(String name, Object args)
    • getOutputDirectory

      @Incubating @OutputDirectory public File getOutputDirectory()
      The location to write TestNG's output.

      Defaults to the owning test task's location for writing the HTML report.

      Since:
      1.11
    • setOutputDirectory

      @Incubating public void setOutputDirectory(File outputDirectory)
    • getIncludeGroups

      public Set<String> getIncludeGroups()
      The set of groups to run.
    • setIncludeGroups

      public void setIncludeGroups(Set<String> includeGroups)
    • getExcludeGroups

      public Set<String> getExcludeGroups()
      The set of groups to exclude.
    • setExcludeGroups

      public void setExcludeGroups(Set<String> excludeGroups)
    • getConfigFailurePolicy

      public String getConfigFailurePolicy()
      Option for what to do for other tests that use a configuration step when that step fails. Can be "skip" or "continue", defaults to "skip".
    • setConfigFailurePolicy

      public void setConfigFailurePolicy(String configFailurePolicy)
    • getListeners

      public Set<String> getListeners()
      Fully qualified classes that are TestNG listeners (instances of org.testng.ITestListener or org.testng.IReporter). By default, the listeners set is empty. Configuring extra listener:
       apply plugin: 'java'
      
       test {
           useTestNG() {
               // creates emailable HTML file
               // this reporter typically ships with TestNG library
               listeners << 'org.testng.reporters.EmailableReporter'
           }
       }
       
    • setListeners

      public void setListeners(Set<String> listeners)
    • getParallel

      public String getParallel()
      The parallel mode to use for running the tests - one of the following modes: methods, tests, classes or instances. Not required. If not present, parallel mode will not be selected
    • setParallel

      public void setParallel(String parallel)
    • getThreadCount

      public int getThreadCount()
      The number of threads to use for this run. Ignored unless the parallel mode is also specified
    • setThreadCount

      public void setThreadCount(int threadCount)
    • getUseDefaultListeners

      public boolean getUseDefaultListeners()
    • isUseDefaultListeners

      public boolean isUseDefaultListeners()
      Whether the default listeners and reporters should be used. Since Gradle 1.4 it defaults to 'false' so that Gradle can own the reports generation and provide various improvements. This option might be useful for advanced TestNG users who prefer the reports generated by the TestNG library. If you cannot live without some specific TestNG reporter please use listeners property. If you really want to use all default TestNG reporters (e.g. generate the old reports):
       apply plugin: 'java'
      
       test {
           useTestNG() {
               // report generation delegated to TestNG library:
               useDefaultListeners = true
           }
      
           // turn off Gradle's HTML report to avoid replacing the
           // reports generated by TestNG library:
           reports.html.enabled = false
       }
       
      Please refer to the documentation of your version of TestNG what are the default listeners. At the moment of writing this documentation, the default listeners are a set of reporters that generate: TestNG variant of HTML results, TestNG variant of XML results in JUnit format, emailable HTML test report, XML results in TestNG format.
    • setUseDefaultListeners

      public void setUseDefaultListeners(boolean useDefaultListeners)
    • getSuiteName

      public String getSuiteName()
      Sets the default name of the test suite, if one is not specified in a suite XML file or in the source code.
    • setSuiteName

      public void setSuiteName(String suiteName)
    • getTestName

      public String getTestName()
      Sets the default name of the test, if one is not specified in a suite XML file or in the source code.
    • setTestName

      public void setTestName(String testName)
    • getSuiteXmlFiles

      public List<File> getSuiteXmlFiles()
      The suiteXmlFiles to use for running TestNG. Note: The suiteXmlFiles can be used in conjunction with the suiteXmlBuilder.
    • setSuiteXmlFiles

      public void setSuiteXmlFiles(List<File> suiteXmlFiles)
    • getPreserveOrder

      public boolean getPreserveOrder()
    • isPreserveOrder

      @Incubating public boolean isPreserveOrder()
      Indicates whether the tests should be run in deterministic order. Preserving the order guarantees that the complete test (including @BeforeXXX and @AfterXXX) is run in a test thread before the next test is run. Not required. If not present, the order will not be preserved.
    • setPreserveOrder

      @Incubating public void setPreserveOrder(boolean preserveOrder)
    • getGroupByInstances

      @Incubating public boolean getGroupByInstances()
    • isGroupByInstances

      @Incubating public boolean isGroupByInstances()
      Indicates whether the tests should be grouped by instances. Grouping by instances will result in resolving test method dependencies for each instance instead of running the dependees of all instances before running the dependants. Not required. If not present, the tests will not be grouped by instances.
    • setGroupByInstances

      @Incubating public void setGroupByInstances(boolean groupByInstances)
    • getSuiteXmlWriter

      public StringWriter getSuiteXmlWriter()
    • setSuiteXmlWriter

      public void setSuiteXmlWriter(StringWriter suiteXmlWriter)
    • getSuiteXmlBuilder

      public MarkupBuilder getSuiteXmlBuilder()
    • setSuiteXmlBuilder

      public void setSuiteXmlBuilder(MarkupBuilder suiteXmlBuilder)