Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,561 for succeeds (0.14 sec)

  1. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaPluginIntegrationTest.groovy

                }
            """
            file("src/main/scala/Foo.scala") << """
                class Foo
            """
            expect:
            succeeds("assemble")
            succeeds("dependencyInsight", "--configuration", "zinc", "--dependency", "zinc")
        }
    
        @Issue("gradle/gradle#19300")
        def 'show that log4j-core, if present, is 2_17_1 at the minimum'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildStaleOutputsIntegrationTest.groovy

            and:
            buildFile << """
                apply plugin: 'cpp-application'
             """
    
            and:
            succeeds "assemble"
            app.applyChangesToProject(testDirectory)
    
            expect:
            succeeds "assemble"
            result.assertTasksExecuted(tasks.debug.allToInstall, ":assemble")
            result.assertTasksNotSkipped(tasks.debug.allToInstall, ":assemble")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

                'org:testA:3' {
                    expectResolve()
                }
            }
    
            then:
            succeeds 'checkDeps'
            outputContains("Listing versions for module testA")
            resetExpectations()
    
            when:
            succeeds 'checkDeps'
    
            then:
            outputDoesNotContain("Listing versions for module testA")
            resetExpectations()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. platforms/software/reporting/src/integTest/groovy/org/gradle/api/reporting/internal/TaskReportContainerIntegTest.groovy

            expect:
            succeeds(task)
            executedAndNotSkipped(task)
    
            and:
            succeeds(task)
            skipped(task)
        }
    
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        @ToBeFixedForConfigurationCache
        def "task not up to date when enabled set changes"() {
            expect:
            succeeds(task)
            executedAndNotSkipped(task)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ArtifactDeclarationIntegrationTest.groovy

                }
                project(':b') {
                    dependencies {
                        compile project(':a')
                    }
                }
            """
    
            expect:
            succeeds "b:checkDeps"
            resolve.expectGraph {
                root(":b", "test:b:") {
                    project(":a", "test:a:") {
                        artifact(name: 'foo', type: '')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/plugins/ProjectReportsPluginIntegrationSpec.groovy

        def setup() {
            buildFile << """
            plugins {
                id 'project-report'
            }
            """
        }
    
        def "produces report files"() {
            when:
            succeeds("projectReport")
    
            then:
            file("build/reports/project/dependencies.txt").assertExists()
            file("build/reports/project/properties.txt").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskFailOnNoTestIntegrationTest.groovy

        def "test succeeds if a test was executed"() {
            createBuildFileWithJUnitJupiter()
    
            file("src/test/java/SomeTest.java") << """
                public class SomeTest {
                    @org.junit.jupiter.api.Test
                    public void foo() { }
                }
            """
    
            expect:
            succeeds("test")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/software/plugins-version-catalog/src/integTest/groovy/org/gradle/catalog/VersionCatalogPluginApplicationIntegrationTest.groovy

                plugins {
                    alias(libs.plugins.orgExample)
                }
            """
    
            when:
            succeeds(":pluginTask")
    
            then:
            output.contains("from plugin")
    
            when:
            succeeds(":subproject:pluginTask")
    
            then:
            output.contains("from plugin")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

                    apply plugin: 'swift-library'
                }
            """
            app.library.writeToProject(file("greeter"))
            app.executable.writeToProject(file("app"))
    
            expect:
            succeeds ":app:assemble"
            result.assertTasksExecuted(":greeter:compileDebugSwift", ":greeter:linkDebug", ":app:compileDebugSwift", ":app:linkDebug", ":app:installDebug", ":app:assemble")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/SingleUseDaemonIntegrationTest.groovy

        }
    
        def "forks build when JVM args are requested"() {
            requireJvmArg('-Xmx64m')
    
            file('build.gradle') << "println 'hello world'"
    
            when:
            succeeds()
    
            then:
            wasForked()
    
            and:
            daemons.daemon.stops()
        }
    
        def "forks build when default client VM memory is used and user didn't specify a different limit"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top