Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getUseDefaultListeners (0.8 sec)

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

        }
    
        public Set<String> getExcludeGroups() {
            return excludeGroups;
        }
    
        public Set<String> getIncludeGroups() {
            return includeGroups;
        }
    
        public boolean getUseDefaultListeners() {
            return useDefaultListener;
        }
    
        public String getThreadPoolFactoryClass() {
            return threadPoolFactoryClass;
        }
    
        public int getThreadCount() {
    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/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestFramework.java

            return new TestNGSpec(filter.toSpec(),
                options.getSuiteName(), options.getTestName(), options.getParallel(), options.getThreadCount(), options.getSuiteThreadPoolSize().get(),
                options.getUseDefaultListeners(), options.getThreadPoolFactoryClass(),
                options.getIncludeGroups(), options.getExcludeGroups(), options.getListeners(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

            if (className != null && !className.isEmpty()) {
                setThreadPoolFactoryClass(testNg, spec.getThreadPoolFactoryClass());
            }
    
            testNg.setUseDefaultListeners(spec.getUseDefaultListeners());
            testNg.setVerbose(0);
            testNg.setGroups(CollectionUtils.join(",", spec.getIncludeGroups()));
            testNg.setExcludedGroups(CollectionUtils.join(",", spec.getExcludeGroups()));
    
    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/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

         * @since 8.9
         */
        @Internal
        @Incubating
        public abstract Property<Integer> getSuiteThreadPoolSize();
    
        @Internal
        public boolean getUseDefaultListeners() {
            return useDefaultListeners;
        }
    
        /**
         * ThreadPoolExecutorFactory class used by TestNG
         * @since 8.7
         */
        @Internal
        @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.testing.testng.TestNGOptions.getUseDefaultListeners()> does not have raw return type assignable to org.gradle.api.provider.Property in (TestNGOptions.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top