Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getCandidateClassFiles (0.35 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/TestTaskProperties.java

        boolean isUsingJUnitPlatform();
    
        long getForkEvery();
    
        boolean isDryRun();
    
        TestTaskFilters getFilters();
    
        TestTaskForkOptions getForkOptions();
    
        Stream<CandidateClassFile> getCandidateClassFiles();
    
        Stream<InputFileProperty> getInputFileProperties();
    
        Stream<OutputFileProperty> getOutputFileProperties();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskProperties.java

            return filters;
        }
    
        @Override
        public TestTaskForkOptions getForkOptions() {
            return forkOptions;
        }
    
        @Override
        public Stream<CandidateClassFile> getCandidateClassFiles() {
            return candidateClassFiles.stream();
        }
    
        @Override
        public Stream<InputFileProperty> getInputFileProperties() {
            return inputFileProperties.stream();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/JvmTestExecutionSpec.java

        public Iterable<? extends File> getClasspath() {
            return classpath;
        }
    
        public Iterable<? extends File> getModulePath() {
            return modulePath;
        }
    
        public FileTree getCandidateClassFiles() {
            return candidateClassFiles;
        }
    
        public boolean isScanForTestClasses() {
            return scanForTestClasses;
        }
    
        @UsedByScanPlugin("test-retry")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskPropertiesService.java

        }
    
        private ImmutableList<CandidateClassFile> collectCandidateClassFiles(Test task) {
            ImmutableList.Builder<CandidateClassFile> builder = ImmutableList.builder();
            task.getCandidateClassFiles().visit(new EmptyFileVisitor() {
                @Override
                public void visitFile(FileVisitDetails fileDetails) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/DefaultTestExecuter.java

                        new MaxNParallelTestClassProcessor(getMaxParallelForks(testExecutionSpec), reforkingProcessorFactory, actorFactory)));
    
            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)
  6. 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)
  7. 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