Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getExcludeTags (0.28 sec)

  1. 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)
  2. 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)
Back to top