Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getCandidateClassFiles (0.27 sec)

  1. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTest.groovy

        }
    
        def "scans for test classes in the classes dir"() {
            given:
            configureTask()
            test.include("include")
            test.exclude("exclude")
            def classFiles = test.getCandidateClassFiles()
    
            expect:
            assertIsDirectoryTree(classFiles, toSet("include"), toSet("exclude"))
        }
    
        def "disables parallel execution when in debug mode"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. 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);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
Back to top