Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,561 for succeeds (0.16 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/GradleEnterprisePluginBackgroundJobExecutorsIntegrationTest.groovy

                        }
                    }
                }
            """
    
            when:
            succeeds("check")
    
            then:
            plugin.assertBackgroundJobCompletedBeforeShutdown(output, "backgroundJobExecutor.executed")
    
            when:
            succeeds("check")
    
            then:
            plugin.assertBackgroundJobCompletedBeforeShutdown(output, "backgroundJobExecutor.executed")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 16:27:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputHistoryLossIntegrationTest.groovy

            when:
            forceDelete(javaProject.redundantSourceFile)
            succeeds JAR_TASK_NAME
    
            then:
            javaProject.mainClassFile.assertIsFile()
            javaProject.redundantClassFile.assertDoesNotExist()
            javaProject.assertJarHasDescendants(javaProject.mainClassFile.name)
    
            when:
            succeeds JAR_TASK_NAME
    
            then:
            javaProject.assertBuildTasksSkipped(result)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerSamplesEndUserIntegrationTest.groovy

            expect:
            executer.inDirectory(sample.dir.file(dsl))
            succeeds "check"
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("testKit/spockQuickstart")
        def spockQuickstart() {
            expect:
            executer.inDirectory(sample.dir.file('groovy'))
            succeeds "check"
        }
    
        @UsesSample("testKit/automaticClasspathInjectionQuickstart")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SimpleJavaContinuousIntegrationTest.groovy

            when:
            assert !file("src/main/java").exists()
    
            then:
            succeeds("build")
            skipped(":compileJava")
            executed(":build")
        }
    
        def "can build when source dir is removed"() {
            when:
            file("src/main/java/Thing.java") << "class Thing {}"
    
            then:
            succeeds("build")
            executedAndNotSkipped ":compileJava", ":build"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestOptionsIntegrationSpec.groovy

            when:
            succeeds ":integTest"
            assertIntegTestsExecuted()
    
            then:
            executedAndNotSkipped ":integTest"
    
            when:
            buildFile << """
            integTest {
               options {
                   includeTags 'slow'
               }
            }""".stripMargin()
    
            and:
            succeeds ":integTest"
            assertIntegTestsExecuted()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/IncrementalAntlrTaskIntegrationTest.groovy

            then:
            succeeds("generateGrammarSource")
    
            test1TokenFile.exists()
            test1LexerFile.exists()
            test1ParserFile.exists()
    
            test2TokenFile.exists()
            test2LexerFile.exists()
            test2ParserFile.exists()
    
            when:
            removedGrammar("Test1")
    
            then:
            succeeds("generateGrammarSource")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractSourcesAndJavadocJarsIntegrationTest.groovy

    }
    """
    
            when:
            useMavenRepo(repo)
            succeeds ideTask
    
            then:
            ideFileContainsEntry("module-1.0.jar", "module-1.0-sources.jar", "module-1.0-javadoc.jar")
            ideFileContainsEntry("module-1.0-api.jar", "module-1.0-sources.jar", "module-1.0-javadoc.jar")
    
            when:
            server.resetExpectations()
            succeeds ideTask
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleCppProjectIntegrationTest.groovy

                }
    """
            def app = new CppAppWithLibrary()
            app.greeter.writeToProject(file('greeter'))
            app.main.writeToProject(file('app'))
    
            when:
            succeeds("xcode")
    
            then:
            executedAndNotSkipped(":app:xcodeProject", ":app:xcodeProjectWorkspaceSettings", ":app:xcodeScheme", ":app:xcode",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIntegrationTest.groovy

            shouldResolve(first, second)
    
            when:
            succeeds("resolve")
            then:
            result.assertTasksExecutedInOrder(":second:generate", ":first:generate", ":resolve")
    
            // Updating the remote repository causes changes downstream
            when:
            changeMessage("goodbye world", first, second)
    
            then:
            succeeds("resolve")
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            """
    
            when:
            succeeds("run")
    
            then:
            output.contains(logStatement())
            file('encoded.out').getText("utf-8") == "\u03b1\u03b2\u03b3"
        }
    
        def "can compile with specified debug settings"() {
            given:
            goodCode()
    
            when:
            succeeds("compileJava")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top