Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for supportsCategoryOnNestedClass (0.24 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/vintage/JUnitVintageCategoriesOrTagsCoverageIntegrationTest.groovy

        String singularCategoryOrTagName = "tag"
        String pluralCategoryOrTagName = "tags"
    
        @Override
        boolean supportsCategoryOnNestedClass() {
            return true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

        @Override
        TestSourceGenerator getTestSourceGenerator() {
            return new JUnit4TestSourceGenerator()
        }
    
        abstract boolean supportsCategoryOnNestedClass()
    
        def "can specify both includes and excludes for categories"() {
            given:
            testSources.with {
                testClass('CategoryACTests')
                    .withCategoryOrTag('CategoryA')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

        String singularCategoryOrTagName = "category"
        String pluralCategoryOrTagName = "categories"
    
        @Override
        boolean supportsCategoryOnNestedClass() {
            return !(version in ['4.10', '4.11', '4.12'])
        }
    
        def 'reports unloadable #type'() {
            given:
            testSources.with {
                testClass('SomeTestClass').with {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top