- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for buildAndFail (0.16 sec)
-
build-logic/documentation/src/test/groovy/gradlebuild/docs/FindBrokenInternalLinksTest.groovy
=== Dead Section Links This section doesn't exist: <<missing_section>> Also see this one, which is another dead link: <<other_missing_section>> """ when: run('checkDeadInternalLinks').buildAndFail() then: assertFoundDeadSectionLinks(sampleDoc, "missing_section", "other_missing_section") } def "validates present section links"() { given: sampleDoc << """
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Aug 21 08:08:05 UTC 2024 - 8.3K bytes - Viewed (0) -
build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt
} } @Test fun `fail build if leftover file found and test passes`() { val result = run(":successful-test-with-leftover:test", "--no-watch-fs").buildAndFail() assertEquals(TaskOutcome.SUCCESS, result.task(":successful-test-with-leftover:test")!!.outcome) assertEquals(1, StringUtils.countMatches(result.output, "Found non-empty test files dir"))
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jun 14 12:35:52 UTC 2023 - 10.6K bytes - Viewed (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt
fun assertHasMisorderedChanges(changes: List<Change>? = null) { val standardError = StringWriter() run(":verifyAcceptedApiChangesOrdering") .forwardStdError(standardError) .buildAndFail() val files = listOf(firstAcceptedApiChangesFile, secondAcceptedApiChangesFile) val cleanupHint = "To automatically alphabetize these changes run: 'gradlew :architecture-test:sortAcceptedApiChanges'"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Jun 04 14:00:46 UTC 2024 - 6K bytes - Viewed (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/SortAcceptedApiChangesTaskIntegrationTest.kt
} ] } """.trimIndent() ) val initialVerifyResult = run(":verifyAcceptedApiChangesOrdering").buildAndFail() assertEquals(TaskOutcome.FAILED, initialVerifyResult.task(":verifyAcceptedApiChangesOrdering")!!.outcome) val sortingResult = run(":sortAcceptedApiChanges").build()
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Jun 04 14:00:46 UTC 2024 - 9.7K bytes - Viewed (0)