Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setTestOutputDir (0.2 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/idea/DefaultIdeaCompilerOutput.java

            this.outputDir = outputDir;
            return this;
        }
    
        @Override
        public File getTestOutputDir() {
            return testOutputDir;
        }
    
        public DefaultIdeaCompilerOutput setTestOutputDir(File testOutputDir) {
            this.testOutputDir = testOutputDir;
            return this;
        }
    
        @Override
        public String toString() {
            return "IdeaCompilerOutput{"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IdeaModuleBuilderSupport.java

                    ideaModule.getInheritOutputDirs() != null
                        ? ideaModule.getInheritOutputDirs()
                        : false
                )
                .setOutputDir(ideaModule.getOutputDir())
                .setTestOutputDir(ideaModule.getTestOutputDir());
        }
    
        public static List<DefaultIdeaDependency> buildDependencies(Set<Dependency> resolvedDependencies) {
            List<DefaultIdeaDependency> dependencies = new LinkedList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 21:25:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Module.java

        /**
         * 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.
         * Must not be null.
         */
        public Set<Dependency> getDependencies() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

         * <p>
         * For example see docs for {@link IdeaModule}
         */
        public File getTestOutputDir() {
            return testOutputDir;
        }
    
        public void setTestOutputDir(File testOutputDir) {
            this.testOutputDir = testOutputDir;
        }
    
        /**
         * The variables to be used for replacing absolute paths in the iml entries.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top