Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for extendsCategories (0.23 sec)

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

            final String sourceSet
            List<String> extendsCategories = []
    
            Category(String name, String sourceSet) {
                this.name = name.substring(name.lastIndexOf('.') + 1)
                this.packageName = name.contains('.') ? name.substring(0, name.lastIndexOf('.')) : ''
                this.extendsCategories = extendsCategories
                this.sourceSet = sourceSet
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 14:54:49 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

                        ${category.packageName}
    
                        import org.junit.experimental.categories.Category;
    
                        public interface ${category.name} ${!category.extendsCategories.isEmpty() ? "extends ${category.extendsCategories.join(', ')}" : ""} {
                        }
                    """.stripIndent()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 19.7K bytes
    - Viewed (0)
Back to top