Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getIncludeGroups (0.28 sec)

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

        }
    
        public Set<String> getListeners() {
            return listeners;
        }
    
        public Set<String> getExcludeGroups() {
            return excludeGroups;
        }
    
        public Set<String> getIncludeGroups() {
            return includeGroups;
        }
    
        public boolean getUseDefaultListeners() {
            return useDefaultListener;
        }
    
        public String getThreadPoolFactoryClass() {
    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

                options.getUseDefaultListeners(), options.getThreadPoolFactoryClass(),
                options.getIncludeGroups(), options.getExcludeGroups(), options.getListeners(),
                options.getConfigFailurePolicy(), options.getPreserveOrder(), options.getGroupByInstances(), dryRun.get()
            );
        }
    
        @Override
    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

            }
    
            testNg.setUseDefaultListeners(spec.getUseDefaultListeners());
            testNg.setVerbose(0);
            testNg.setGroups(CollectionUtils.join(",", spec.getIncludeGroups()));
            testNg.setExcludedGroups(CollectionUtils.join(",", spec.getExcludeGroups()));
    
            // Adding custom test listeners before Gradle's listeners.
    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

        public void setOutputDirectory(File outputDirectory) {
            this.outputDirectory = outputDirectory;
        }
    
        /**
         * The set of groups to run.
         */
        @Input
        public Set<String> getIncludeGroups() {
            return includeGroups;
        }
    
        public void setIncludeGroups(Set<String> includeGroups) {
            this.includeGroups = includeGroups;
        }
    
        /**
    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. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

            then: 1 * processor.completed(1, { it.resultType == null})
    
            0 * processor._
        }
    
        void "includes and excludes groups"() {
            given:
            _ * spec.getIncludeGroups() >> ['group1', 'group2']
            _ * spec.getExcludeGroups() >> ['group3']
    
            when: process(ATestNGClassWithGroups)
    
            then:
            1 * processor.started({ it.id == 1 } , _)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

            } else if (TestNGOptions.class.isAssignableFrom(frameworkOptions.getClass())) {
                TestNGOptions testNGOptions = (TestNGOptions) frameworkOptions;
                return testNGOptions.getIncludeGroups().isEmpty()
                    && testNGOptions.getExcludeGroups().isEmpty();
            } else {
                throw new IllegalArgumentException("Unknown test framework: " + frameworkOptions.getClass().getName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.testing.testng.TestNGOptions.getGroupByInstances()> does not have raw return type assignable to org.gradle.api.provider.Property in (TestNGOptions.java:0)
    Method <org.gradle.api.tasks.testing.testng.TestNGOptions.getIncludeGroups()> 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