Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isScanForTestClasses (0.18 sec)

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

        public Iterable<? extends File> getModulePath() {
            return modulePath;
        }
    
        public FileTree getCandidateClassFiles() {
            return candidateClassFiles;
        }
    
        public boolean isScanForTestClasses() {
            return scanForTestClasses;
        }
    
        @UsedByScanPlugin("test-retry")
        public FileCollection getTestClassesDirs() {
            return testClassesDirs;
        }
    
        public String getPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/DefaultTestExecuter.java

            final FileTree testClassFiles = testExecutionSpec.getCandidateClassFiles();
    
            Runnable detector;
            if (testExecutionSpec.isScanForTestClasses() && testFramework.getDetector() != null) {
                TestFrameworkDetector testFrameworkDetector = testFramework.getDetector();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

            FileCollection modulePath = javaModuleDetector.inferModulePath(testIsModule, stableClasspath);
            return new JvmTestExecutionSpec(getTestFramework(), classpath, modulePath, getCandidateClassFiles(), isScanForTestClasses(), getTestClassesDirs(), getPath(), getIdentityPath(), getForkEvery(), javaForkOptions, getMaxParallelForks(), getPreviousFailedTestClasses(), testIsModule);
        }
    
        private void validateExecutableMatchesToolchain() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.testing.Test.getWorkingDir()> does not have raw return type assignable to org.gradle.api.provider.Property in (Test.java:0)
    Method <org.gradle.api.tasks.testing.Test.isScanForTestClasses()> does not have raw return type assignable to org.gradle.api.provider.Property in (Test.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top