Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 184 for TestKit (0.1 sec)

  1. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/test/preconditions/TestKitPreconditions.groovy

     * limitations under the License.
     */
    
    package org.gradle.test.preconditions
    
    import org.gradle.test.precondition.TestPrecondition
    import org.gradle.testkit.runner.BaseGradleRunnerIntegrationTest
    
    class TestKitPreconditions {
    
        static class LowestMajorGradleIsAvailable implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/TestKitDependencyBlock.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testkit.runner.enduser
    
    trait TestKitDependencyBlock {
    
        String gradleTestKitDependency() {
            """
                dependencies {
                    testImplementation gradleTestKit()
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 856 bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/fixtures/InjectsPluginClasspath.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testkit.runner.fixtures;
    
    import java.lang.annotation.*;
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE, ElementType.METHOD})
    @Inherited
    public @interface InjectsPluginClasspath {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 834 bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/feature/TestKitFeature.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testkit.runner.internal.feature;
    
    import org.gradle.util.GradleVersion;
    
    public enum TestKitFeature {
    
        RUN_BUILDS(GradleVersion.version("2.6")),
        CAPTURE_BUILD_RESULT_TASKS(GradleVersion.version("2.6")),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/fixtures/Debug.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testkit.runner.fixtures;
    
    import java.lang.annotation.*;
    
    /**
     * Indicates that the feature under test only works with debug on, or is testing something that doesn't make sense to test without debug on.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 966 bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/InvalidPluginMetadataException.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testkit.runner;
    
    /**
     * Thrown when the plugin under test metadata cannot be read.
     *
     * @since 2.13
     * @see GradleRunner#withPluginClasspath()
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 941 bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/fixtures/CustomDaemonDirectory.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testkit.runner.fixtures;
    
    import java.lang.annotation.*;
    
    /**
     * Indicates that the feature under test requires a custom daemon directory.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 900 bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/impldeps/GradleImplDepsLoggingIntegrationTest.groovy

    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.util.GradleVersion
    
    @Requires(IntegTestPreconditions.NotEmbeddedExecutor) // Gradle API and TestKit JARs are not generated when running embedded
    class GradleImplDepsLoggingIntegrationTest extends BaseGradleImplDepsIntegrationTest {
    
        def "Generating Gradle API jar is logged with rich console"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/DockerPluginSmokeTest.groovy

     */
    
    package org.gradle.smoketests
    
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    import spock.lang.Issue
    
    import static org.gradle.testkit.runner.TaskOutcome.SUCCESS
    
    class DockerPluginSmokeTest extends AbstractSmokeTest {
    
        // Plugin after 7.0.0 requires Java 11+ to run
        @Requires(UnitTestPreconditions.Jdk11OrLater)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyFactoryInternal.java

        //for gradle distribution specific dependencies
        enum ClassPathNotation {
            GRADLE_API("Gradle API"),
            GRADLE_KOTLIN_DSL("Gradle Kotlin DSL"),
            GRADLE_TEST_KIT("Gradle TestKit"),
            LOCAL_GROOVY("Local Groovy"),
            LOCAL_PROJECT_AS_OPAQUE_DEPENDENCY("Local project as an opaque dependency");
    
            public final String displayName;
    
            ClassPathNotation(String displayName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:26:09 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top