Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestSelectionMatcher (0.15 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/processors/PatternMatchTestClassProcessor.java

    import org.gradle.api.internal.tasks.testing.filter.DefaultTestFilter;
    import org.gradle.api.internal.tasks.testing.filter.TestSelectionMatcher;
    
    public class PatternMatchTestClassProcessor implements TestClassProcessor {
        private final TestSelectionMatcher testClassSelectionMatcher;
        private final TestClassProcessor delegate;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassExecutor.java

            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
                // matches the filter, run the entire suite instead of filtering away its contents.
    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