Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for suiteThreadPoolSize (0.17 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGSpec.java

            this.defaultSuiteName = defaultSuiteName;
            this.defaultTestName = defaultTestName;
            this.parallel = parallel;
            this.threadCount = threadCount;
            this.suiteThreadPoolSize = suiteThreadPoolSize;
            this.useDefaultListener = useDefaultListener;
            this.threadPoolFactoryClass = threadPoolFactoryClass;
            this.includeGroups = includeGroups;
            this.excludeGroups = excludeGroups;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGParallelBySuitesNotSupportedIntegrationTest.groovy

        def "run tests using TestNG version not supporting suiteThreadPoolSize changing"() {
            given:
            buildFile << """
                apply plugin: 'java'
                ${mavenCentralRepository()}
                dependencies { testImplementation 'org.testng:testng:5.12.1' }
                test { useTestNG { suiteThreadPoolSize = 5 } }
            """
    
            file("src/test/java/SimpleTest.java") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

        private void setSuiteThreadPoolSize(TestNG testNg, int suiteThreadPoolSize) {
            if (suiteThreadPoolSize < 1) {
                throw new InvalidUserDataException("suiteThreadPoolSize must be greater than or equal to 1.");
            }
    
            try {
                JavaMethod.of(TestNG.class, Object.class, "setSuiteThreadPoolSize", int.class).invoke(testNg, suiteThreadPoolSize);
            } catch (NoSuchMethodException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/testng/TestNGOptionsTest.groovy

                configFailurePolicy == source.configFailurePolicy
                listeners == source.listeners
                parallel == source.parallel
                threadCount == source.threadCount
                suiteThreadPoolSize.get() == source.suiteThreadPoolSize.get()
                useDefaultListeners == source.useDefaultListeners
                threadPoolFactoryClass == source.threadPoolFactoryClass
                suiteName == source.suiteName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGUpToDateCheckIntegrationTest.groovy

            'suiteName'              | '= "Honeymoon Suite"'
            'testName'               | '= "Turing completeness"'
            'parallel'               | '= "methods"'
            'threadCount'            | '= 2'
            'suiteThreadPoolSize'    | '= 2'
            'listeners'              | '= ["org.testng.reporters.FailedReporter"]'
            'useDefaultListeners'    | '= true'
            'threadPoolFactoryClass' | '= "some.Class"'
    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