Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

                        ${testClass.categoriesOrTags.collect { "@Tag(\"${it}\")" }.join('\n')}
                        public class ${testClass.name} {
                            ${testClass.methods.collect { generateTestMethod(it) }.join('\n')}
                        }
                    """.stripIndent()
            }
    
            private TestFile writeSourceFile(AbstractJUnitCategoriesOrTagsCoverageIntegrationSpec.TestSource testSource) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

                        ${categoryAnnotation(testClass.categoriesOrTags)}
                        public class ${testClass.name} {
                            ${testClass.methods.collect { generateTestMethod(it) }.join('\n')}
                        }
                    """.stripIndent()
            }
    
            private TestFile writeCategoryClass(AbstractJUnitCategoriesOrTagsCoverageIntegrationSpec.Category category) {
    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