Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for getExcludeTags (0.35 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/TestTaskFilters.java

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 998 bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestFramework.java

            return new JUnitPlatformTestClassProcessorFactory(new JUnitPlatformSpec(
                filter.toSpec(), options.getIncludeEngines(), options.getExcludeEngines(),
                options.getIncludeTags(), options.getExcludeTags(), dryRun.get()
            ));
        }
    
        @Override
        public Action<WorkerProcessBuilder> getWorkerConfigurationAction() {
            return workerProcessBuilder -> workerProcessBuilder.sharedPackages("org.junit");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformSpec.java

            return new ArrayList<String>(excludeEngines);
        }
    
        public List<String> getIncludeTags() {
            return new ArrayList<String>(includeTags);
        }
    
        public List<String> getExcludeTags() {
            return new ArrayList<String>(excludeTags);
        }
    
        public boolean isDryRun() {
            return isDryRun;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskFilters.java

            return excludePatterns;
        }
    
        @Override
        public Set<String> getIncludeTags() {
            return includeTags;
        }
    
        @Override
        public Set<String> getExcludeTags() {
            return excludeTags;
        }
    
        @Override
        public Set<String> getIncludeEngines() {
            return includeEngines;
        }
    
        @Override
        public Set<String> getExcludeEngines() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/junitplatform/JUnitPlatformOptions.java

            this.excludeEngines = excludeEngines;
        }
    
        public void setIncludeTags(Set<String> includeTags) {
            this.includeTags = includeTags;
        }
    
        @Input
        public Set<String> getExcludeTags() {
            return excludeTags;
        }
    
        public void setExcludeTags(Set<String> excludeTags) {
            this.excludeTags = excludeTags;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskPropertiesService.java

                filter.getCommandLineIncludePatterns(),
                filter.getExcludePatterns(),
                getOrEmpty(options, JUnitPlatformOptions::getIncludeTags),
                getOrEmpty(options, JUnitPlatformOptions::getExcludeTags),
                getOrEmpty(options, JUnitPlatformOptions::getIncludeEngines),
                getOrEmpty(options, JUnitPlatformOptions::getExcludeEngines)
            );
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestClassProcessor.java

            List<String> includeTags = spec.getIncludeTags();
            if (!includeTags.isEmpty()) {
                requestBuilder.filters(includeTags(includeTags));
            }
            List<String> excludeTags = spec.getExcludeTags();
            if (!excludeTags.isEmpty()) {
                requestBuilder.filters(excludeTags(excludeTags));
            }
        }
    
        private void addTestNameFilters(LauncherDiscoveryRequestBuilder requestBuilder) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

                JUnitPlatformOptions junitPlatformOptions = (JUnitPlatformOptions) frameworkOptions;
                return junitPlatformOptions.getIncludeTags().isEmpty()
                    && junitPlatformOptions.getExcludeTags().isEmpty();
            } else if (TestNGOptions.class.isAssignableFrom(frameworkOptions.getClass())) {
                TestNGOptions testNGOptions = (TestNGOptions) frameworkOptions;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.testing.junitplatform.JUnitPlatformOptions.getExcludeTags()> does not have raw return type assignable to org.gradle.api.provider.Property in (JUnitPlatformOptions.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