Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for useDefaultListeners (0.23 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

            return this;
        }
    
        public TestNGOptions useDefaultListeners() {
            useDefaultListeners = true;
            return this;
        }
    
        public TestNGOptions useDefaultListeners(boolean useDefaultListeners) {
            this.useDefaultListeners = useDefaultListeners;
            return this;
        }
    
        public Object propertyMissing(final String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/testng-java-passing/groovy/build.gradle

    plugins {
        id 'java'
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testImplementation 'org.testng:testng:6.3.1'
    }
    
    test {
       useTestNG(){
           useDefaultListeners = true
       }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 195 bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/testng/TestNGOptionsTest.groovy

                parallel == source.parallel
                threadCount == source.threadCount
                suiteThreadPoolSize.get() == source.suiteThreadPoolSize.get()
                useDefaultListeners == source.useDefaultListeners
                threadPoolFactoryClass == source.threadPoolFactoryClass
                suiteName == source.suiteName
                testName == source.testName
                suiteXmlFiles == source.suiteXmlFiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/resources/org/gradle/testing/testng/TestNGFailurePolicyIntegrationTest/shared/build.gradle

     * limitations under the License.
     */
    
    apply plugin: "java"
    
    repositories {
        mavenCentral()
    }
    
    test {
        useTestNG {
            useDefaultListeners = true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 742 bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGProducesOldReportsIntegrationTest.groovy

            buildFile << """
    apply plugin: 'java'
    ${mavenCentralRepository()}
    dependencies { testImplementation 'org.testng:testng:6.3.1' }
    test {
      reports.html.required = false
      $preConfig
      useTestNG(){
        useDefaultListeners = true
      }
      $postConfig
    }
    """
            when:
            executer.withTasks('test').run()
    
            then:
            new JUnitXmlTestExecutionResult(file(".")).hasJUnitXmlResults()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGUpToDateCheckIntegrationTest.groovy

            'parallel'               | '= "methods"'
            'threadCount'            | '= 2'
            'suiteThreadPoolSize'    | '= 2'
            'listeners'              | '= ["org.testng.reporters.FailedReporter"]'
            'useDefaultListeners'    | '= true'
            'threadPoolFactoryClass' | '= "some.Class"'
            'configFailurePolicy'    | '= "continue"'
            'preserveOrder'          | '= true'
            'groupByInstances'       | '= true'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top