Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for includeSpockAnnotation (0.34 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild.integration-tests.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import gradlebuild.basics.testing.TestType
    import gradlebuild.basics.testing.includeSpockAnnotation
    import gradlebuild.integrationtests.addDependenciesAndConfigurations
    import gradlebuild.integrationtests.addSourceSet
    import gradlebuild.integrationtests.configureIde
    import gradlebuild.integrationtests.createTasks
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Tue Nov 21 22:31:45 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/testing/TestType.kt

        INTEGRATION("integ", listOf("embedded", "forking", "noDaemon", "parallel", "configCache", "isolatedProjects")),
        CROSSVERSION("crossVersion", listOf("embedded", "forking"))
    }
    
    
    fun Test.includeSpockAnnotation(fqcn: String) {
        systemProperties.compute("include.spock.annotation") { _, oldValue ->
            if (oldValue == null) fqcn else "$oldValue,$fqcn"
        }
    }
    
    
    fun Test.excludeSpockAnnotation(fqcn: String) {
    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)
  3. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

    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
    import gradlebuild.jvm.extension.UnitTestAndCompileExtension
    import org.gradle.internal.os.OperatingSystem
    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