Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 260 for Vintage (0.13 sec)

  1. platforms/documentation/docs/src/snippets/testing/junitplatform-mix/kotlin/build.gradle.kts

    plugins {
        java
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::vintage-dependencies[]
    dependencies {
        testImplementation("org.junit.jupiter:junit-jupiter:5.7.1")
        testCompileOnly("junit:junit:4.13")
        testRuntimeOnly("org.junit.vintage:junit-vintage-engine")
        testRuntimeOnly("org.junit.platform:junit-platform-launcher")
    }
    // end::vintage-dependencies[]
    
    tasks.named<Test>("test") {
        useJUnitPlatform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 424 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/junitplatform-mix/groovy/build.gradle

    plugins {
        id 'java'
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::vintage-dependencies[]
    dependencies {
        testImplementation 'org.junit.jupiter:junit-jupiter:5.7.1'
        testCompileOnly 'junit:junit:4.13'
        testRuntimeOnly 'org.junit.vintage:junit-vintage-engine'
        testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
    }
    // end::vintage-dependencies[]
    
    tasks.named('test', Test) {
        useJUnitPlatform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 425 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/junitplatform-engine/groovy/build.gradle

        testCompileOnly 'junit:junit:4.13'
        testRuntimeOnly 'org.junit.vintage:junit-vintage-engine'
        testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
    }
    
    // tag::filter-engine[]
    tasks.withType(Test).configureEach {
        useJUnitPlatform {
            includeEngines 'junit-vintage'
            // excludeEngines 'junit-jupiter'
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 507 bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/vintage/package-info.java

     * limitations under the License.
     */
    
    /**
     * This package contains tests that should be specific to the JUnit Vintage engine.  Many classes
     * may extend from abstract classes in the junit4 package.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 824 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/spring-boot-web-application/groovy/app/build.gradle

    	implementation 'org.springframework.boot:spring-boot-starter'
    	testImplementation('org.springframework.boot:spring-boot-starter-test') {
    		exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
    	}
        testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
    }
    
    tasks.named('test', Test) {
    	useJUnitPlatform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 641 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/junitplatform-engine/kotlin/build.gradle.kts

        testCompileOnly("junit:junit:4.13")
        testRuntimeOnly("org.junit.vintage:junit-vintage-engine")
        testRuntimeOnly("org.junit.platform:junit-platform-launcher")
    }
    
    // tag::filter-engine[]
    tasks.withType<Test>().configureEach {
        useJUnitPlatform {
            includeEngines("junit-vintage")
            // excludeEngines("junit-jupiter")
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 510 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/spring-boot-web-application/kotlin/app/build.gradle.kts

        implementation("org.springframework.boot:spring-boot-starter")
        testImplementation("org.springframework.boot:spring-boot-starter-test") {
            exclude(mapOf("group" to "org.junit.vintage", "module" to "junit-vintage-engine"))
        }
        testRuntimeOnly("org.junit.platform:junit-platform-launcher")
    }
    
    tasks.named<Test>("test") {
        useJUnitPlatform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 687 bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/testFixtures/groovy/org/gradle/testing/fixture/JUnitCoverage.groovy

    /**
     * JUNIT_4 is JUnit 4 series, i.e. junit:junit:4.13
     * JUNIT_JUPITER is JUnit Jupiter engine, i.e. org.junit.jupiter:junit-jupiter:5.7.1
     * JUNIT_VINTAGE is JUnit Vintage engine which supports JUnit 4 tests on top of JUnit Platform, i.e. org.junit.vintage:junit-vintage-engine:5.7.1
     */
    class JUnitCoverage {
        final static String LATEST_JUNIT3_VERSION = '3.8.2'
        final static String LATEST_JUNIT4_VERSION = '4.13.2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/vintage/JUnitVintageTestListenerIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testing.junit.vintage
    
    import org.gradle.integtests.fixtures.TargetCoverage
    import org.gradle.testing.junit.junit4.AbstractJUnit4TestListenerIntegrationTest
    
    import static org.gradle.testing.fixture.JUnitCoverage.JUNIT_VINTAGE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/vintage/JUnitVintageMultiVersionTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testing.junit.vintage
    
    import org.gradle.integtests.fixtures.MultiVersionIntegrationSpec
    import org.gradle.testing.fixture.AbstractTestingMultiVersionIntegrationTest
    import org.gradle.testing.junit.junit4.JUnit4CommonTestSources
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top