Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ForkedTestClasspathFactory (0.22 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

     * the distribution.
     *
     * @see ForkedTestClasspath
     */
    public class ForkedTestClasspathFactory {
    
        private static final Logger LOGGER = Logging.getLogger(ForkedTestClasspathFactory.class);
    
        private final ModuleRegistry moduleRegistry;
        private final ClassDetectorFactory classDetectorFactory;
    
        public ForkedTestClasspathFactory(ModuleRegistry moduleRegistry) {
            this(moduleRegistry, ClassLoadingClassDetector::new);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactoryTest.groovy

        }
    
        def runtimeClasses = Spy(TestClassDetector)
        def classDetectorFactory = Mock(ForkedTestClasspathFactory.ClassDetectorFactory) {
            create(_, _) >> { runtimeClasses }
        }
        ForkedTestClasspathFactory underTest = new ForkedTestClasspathFactory(moduleRegistry, classDetectorFactory)
    
        def "creates a limited implementation classpath"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/DefaultTestExecuter.java

        private static final Logger LOGGER = Logging.getLogger(DefaultTestExecuter.class);
    
        private final WorkerProcessFactory workerFactory;
        private final ActorFactory actorFactory;
        private final ForkedTestClasspathFactory testClasspathFactory;
        private final WorkerLeaseService workerLeaseService;
        private final int maxWorkerCount;
        private final Clock clock;
        private final DocumentationRegistry documentationRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.tasks.testing.detection.ForkedTestClasspathFactory$ClassLoadingClassDetector> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (ForkedTestClasspathFactory.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top