Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GenerateAutoTestedSamplesTestTask (0.1 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/GenerateAutoTestedSamplesTestTask.kt

     * there will be two files generated: `ABCAutoTestedSamplesTest.groovy` and `XYZAutoTestedSamplesTest.groovy`
     */
    @CacheableTask
    abstract class GenerateAutoTestedSamplesTestTask @Inject constructor(@Internal val fileOperations: FileOperations) : DefaultTask() {
        private
        val sampleStart = Pattern.compile("""<pre class=['"]autoTested(.*?)['"].*?>""")
    
        @get:InputFiles
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Dec 19 06:44:41 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/extension/IntegrationTestExtension.kt

     */
    
    package gradlebuild.integrationtests.extension
    
    import org.gradle.api.provider.Property
    
    
    abstract class IntegrationTestExtension {
        /**
         * If enabled, there will be a `GenerateAutoTestedSamplesTestTask` task
         * that generates a subclass of `AbstractAutoTestedSamplesTest` to
         * test all snippets embedded in javadoc with `class='autoTested'`.
         */
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Jun 27 08:23:32 UTC 2025
    - 1.1K bytes
    - Viewed (0)
Back to top