Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getExcludedTests (0.17 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/filter/TestFilterSpec.java

            this.includedTestsCommandLine = includedTestsCommandLine;
        }
    
        public Set<String> getIncludedTests() {
            return includedTests;
        }
    
        public Set<String> getExcludedTests() {
            return excludedTests;
        }
    
        public Set<String> getIncludedTestsCommandLine() {
            return includedTestsCommandLine;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassExecutor.java

            TestFilterSpec filterSpec = spec.getFilter();
            if (!filterSpec.getIncludedTests().isEmpty()
                || !filterSpec.getIncludedTestsCommandLine().isEmpty()
                || !filterSpec.getExcludedTests().isEmpty()) {
                TestSelectionMatcher matcher = new TestSelectionMatcher(filterSpec);
    
                // For test suites (including suite-like custom Runners), if the test suite class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top