Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JUnitPlatformTestClassProcessorFactory (0.41 sec)

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

     * This class is loaded on test workers themselves and acts as the entry-point to running JUnit Platform tests on a test worker.
     */
    class JUnitPlatformTestClassProcessorFactory implements WorkerTestClassProcessorFactory, Serializable {
        private final JUnitPlatformSpec spec;
    
        JUnitPlatformTestClassProcessorFactory(JUnitPlatformSpec spec) {
            this.spec = spec;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestFramework.java

            }
            validateOptions();
            return new JUnitPlatformTestClassProcessorFactory(new JUnitPlatformSpec(
                filter.toSpec(), options.getIncludeEngines(), options.getExcludeEngines(),
                options.getIncludeTags(), options.getExcludeTags(), dryRun.get()
            ));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top