Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for targetExcludedCategory (0.17 sec)

  1. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/junitplatform/JUnitPlatformOptionsTest.groovy

                .excludeTags("sourceExcludedTag")
    
            when:
            def target = new JUnitPlatformOptions()
                .includeEngines("targetIncludedCategory")
                .excludeEngines("targetExcludedCategory")
                .includeTags("targetIncludedTag")
                .excludeTags("targetExcludedTag")
            target.copyFrom(source)
    
            then:
            with(target) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/junit/JUnitOptionsTest.groovy

                .excludeCategories("sourceExcludedCategory")
    
            when:
            def target = new JUnitOptions()
                .includeCategories("targetIncludedCategory")
                .excludeCategories("targetExcludedCategory")
            target.copyFrom(source)
    
            then:
            with(target) {
                includeCategories =~ ["sourceIncludedCategory"]
                excludeCategories =~ ["sourceExcludedCategory"]
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top