Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for JUNIT_JUPITER (0.16 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/JvmProjectInitDescriptor.java

            if (modularizationOption == ModularizationOption.WITH_LIBRARY_PROJECTS) {
                // This is the only supported option
                return BuildInitTestFramework.JUNIT_JUPITER;
            }
            return description.getDefaultTestFramework();
        }
    
        @Override
        public Set<BuildInitTestFramework> getTestFrameworks(ModularizationOption modularizationOption) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:24 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaLibraryInitIntegrationTest.groovy

            where:
            [scriptDsl, testFramework] << [
                    ScriptDslFixture.SCRIPT_DSLS,
                    [ BuildInitTestFramework.JUNIT, BuildInitTestFramework.TESTNG, BuildInitTestFramework.JUNIT_JUPITER ]
            ].combinations()
        }
    
        def "creates sample source with package and #testFramework and #scriptDsl build scripts with --incubating"() {
            def dslFixture = dslFixtureFor(scriptDsl)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 11.8K bytes
    - Viewed (1)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterCategoriesOrTagsCoverageIntegrationTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.testing.junit.AbstractJUnitCategoriesOrTagsCoverageIntegrationSpec
    
    import static org.gradle.testing.fixture.JUnitCoverage.JUNIT_JUPITER
    
    @TargetCoverage({ JUNIT_JUPITER })
    class JUnitJupiterCategoriesOrTagsCoverageIntegrationTest extends AbstractJUnitCategoriesOrTagsCoverageIntegrationSpec implements JUnitJupiterMultiVersionTest {
        String singularCategoryOrTagName = "tag"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  4. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

            val projectName = "demo"
            val packageName = if (descriptor.supportsPackage()) projectName else null
            val testFramework = if (modularization == ModularizationOption.WITH_LIBRARY_PROJECTS) BuildInitTestFramework.JUNIT_JUPITER else descriptor.defaultTestFramework
    
            // clear the target directory to remove renamed files and reset the README file
            target.asFile.deleteRecursively()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top