Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getWorkerApplicationClasspathModules (0.36 sec)

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

         * also included in the implementation classpath.
         *
         * @see #getUseDistributionDependencies()
         */
        @Internal
        default List<TestFrameworkDistributionModule> getWorkerApplicationClasspathModules() {
            return Collections.emptyList();
        }
    
        /**
         * Returns a list of distribution modules that the test worker requires on the application modulepath if it runs as a module.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactoryTest.groovy

            }
            return Mock(TestFramework) {
                getUseDistributionDependencies() >> useDependencies
                getWorkerApplicationClasspathModules() >> appClasses.collect { asDistModule(it) }
                getWorkerApplicationModulepathModules() >> appModules.collect { asDistModule(it) }
    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/ForkedTestClasspathFactory.java

                    withImplementation(ImmutableList.of()), ImmutableList.of()
                );
            }
    
            AdditionalClasspath unfiltered = new AdditionalClasspath(
                testFramework.getWorkerApplicationClasspathModules(),
                testFramework.getWorkerApplicationModulepathModules(),
                testFramework.getWorkerImplementationClasspathModules(),
                testFramework.getWorkerImplementationModulepathModules()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top