Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for excludeSpockAnnotation (0.21 sec)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/testing/TestType.kt

    
    fun Test.includeSpockAnnotation(fqcn: String) {
        systemProperties.compute("include.spock.annotation") { _, oldValue ->
            if (oldValue == null) fqcn else "$oldValue,$fqcn"
        }
    }
    
    
    fun Test.excludeSpockAnnotation(fqcn: String) {
        systemProperties.compute("exclude.spock.annotation") { _, oldValue ->
            if (oldValue == null) fqcn else "$oldValue,$fqcn"
        }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

    import gradlebuild.basics.rerunAllTests
    import gradlebuild.basics.testDistributionEnabled
    import gradlebuild.basics.testJavaVendor
    import gradlebuild.basics.testJavaVersion
    import gradlebuild.basics.testing.excludeSpockAnnotation
    import gradlebuild.basics.testing.includeSpockAnnotation
    import gradlebuild.filterEnvironmentVariables
    import gradlebuild.jvm.argumentproviders.CiEnvironmentProvider
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jan 17 13:36:27 GMT 2024
    - 15.7K bytes
    - Viewed (0)
Back to top