Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isScanForTestClasses (0.17 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)
Back to top