Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for testSources (0.39 sec)

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

        private boolean downloadJavadoc;
        private File contentRoot;
        /**
         * <strong>This field is {@code @Deprecated}, please use {@link #testSources} instead.</strong>
         */
        @Deprecated
        private Set<File> testSourceDirs;
        private ConfigurableFileCollection testSources;
        private Set<File> excludeDirs;
        private Boolean inheritOutputDirs;
        private File outputDir;
        private File testOutputDir;
    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/documentation/docs/src/snippets/ide/ideaAdditionalTestSources/groovy/build.gradle

    }
    
    // tag::mark-additional-sourcesets-as-test[]
    sourceSets {
        intTest {
            java {
                srcDirs = ['src/integration']
            }
        }
    }
    
    idea {
        module {
            testSources.from(sourceSets.intTest.java.srcDirs)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 328 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.model.IdeaModule.xml

                    <td><literal>[]</literal></td>
                    <td>resource dirs from <literal>project.sourceSets.test.resources</literal></td>
                </tr>
                <tr>
                    <td>testSources</td>
                    <td><literal>[]</literal></td>
                    <td>Based on source directories in available test suites</td>
                </tr>
                <tr>
                    <td>testResources</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/external/PlayApp.groovy

        }
    
        String getName() {
            getClass().getSimpleName().toLowerCase()
        }
    
        List<SourceFile> getAllFiles() {
            return appSources + testSources + viewSources + assetSources + confSources + otherSources
        }
    
        SourceFile getGradleBuild() {
            def buildFileName = oldVersion ? "build.gradle.old" : "build.gradle"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. testing/smoke-test/build.gradle.kts

    }
    
    plugins.withType<IdeaPlugin>().configureEach {
        val smokeTestCompileClasspath: Configuration by configurations
        val smokeTestRuntimeClasspath: Configuration by configurations
        model.module {
            testSources.from(smokeTestSourceSet.groovy.srcDirs)
            testResources.from(smokeTestSourceSet.resources.srcDirs)
            scopes["TEST"]!!["plus"]!!.add(smokeTestCompileClasspath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

        // We apply lazy as we don't want to depend on the order
        plugins.withType<IdeaPlugin> {
            with(model) {
                module {
                    testSources.from(sourceSet.java.srcDirs, sourceSet.the<GroovySourceDirectorySet>().srcDirs)
                    testResources.from(sourceSet.resources.srcDirs)
                }
            }
        }
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

                        }
                    }
                }
            }
    
            plugins.withType<IdeaPlugin> {
                configure<IdeaModel> {
                    module {
                        testSources.from(performanceTestSourceSet.java.srcDirs, performanceTestSourceSet.the<GroovySourceDirectorySet>().srcDirs)
                        testResources.from(performanceTestSourceSet.resources.srcDirs)
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/kotlinDsl/accessors/kotlin/src/test/java/TestSource.java

    public class TestSource {
        @org.junit.Test
        public void test() { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 75 bytes
    - Viewed (0)
  9. pkg/kubelet/config/config_test.go

    	channel <- podUpdate
    	expectPodUpdate(t, ch, CreatePodUpdate(kubetypes.UPDATE, TestSource, pod))
    
    	podUpdate = CreatePodUpdate(kubetypes.REMOVE, TestSource, CreateValidPod("foo", "new"))
    	channel <- podUpdate
    	expectPodUpdate(t, ch, CreatePodUpdate(kubetypes.REMOVE, TestSource, pod))
    }
    
    func TestNewPodAddedDelete(t *testing.T) {
    	tCtx := ktesting.Init(t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

            def installations = Mock(InstallationSupplier)
            installations.sourceName >> "testSource"
            installations.get() >> location.collect { InstallationLocation.userDefined(it, "testSource") }
    
            return new DefaultJavaInstallationRegistry(
                toolchainConfiguration,
                [],
                [ installations ],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top