Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getTestOutputDir (0.28 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

            Set<Path> excludeFolders = pathsOf(getExcludeDirs());
            Path outputDir = getOutputDir() != null ? getPathFactory().path(getOutputDir()) : null;
            Path testOutputDir = getTestOutputDir() != null ? getPathFactory().path(getTestOutputDir()) : null;
            Set<Dependency> dependencies = resolveDependencies();
            String level = getLanguageLevel() != null ? getLanguageLevel().getLevel() : null;
    
            xmlModule.configure(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Module.java

            this.outputDir = outputDir;
        }
    
        /**
         * The output directory for test classes.
         * If {@code null}, no entry will be created.
         */
        public Path getTestOutputDir() {
            return testOutputDir;
        }
    
        public void setTestOutputDir(Path testOutputDir) {
            this.testOutputDir = testOutputDir;
        }
    
        /**
         * The dependencies of this module.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21.2K bytes
    - Viewed (0)
Back to top