@@ -19,7 +19,7 @@ Furthermore, this repository provides a small showcase of the functionality prov
1919 ``` groovy
2020 buildscript {
2121 dependencies {
22- classpath "de.mannodermaus.gradle.plugins:android-junit5:1.3.2 .0"
22+ classpath "de.mannodermaus.gradle.plugins:android-junit5:1.4.0 .0"
2323 }
2424 }
2525 ```
@@ -31,7 +31,7 @@ Furthermore, this repository provides a small showcase of the functionality prov
3131 ``` kotlin
3232 buildscript {
3333 dependencies {
34- classpath(" de.mannodermaus.gradle.plugins:android-junit5:1.3.2 .0" )
34+ classpath(" de.mannodermaus.gradle.plugins:android-junit5:1.4.0 .0" )
3535 }
3636 }
3737 ```
@@ -51,15 +51,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
5151
5252 dependencies {
5353 // (Required) Writing and executing Unit Tests on the JUnit Platform
54- testImplementation "org.junit.jupiter:junit-jupiter-api:5.3.2 "
55- testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.2 "
54+ testImplementation "org.junit.jupiter:junit-jupiter-api:5.4.0 "
55+ testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.4.0 "
5656
5757 // (Optional) If you need "Parameterized Tests"
58- testImplementation "org.junit.jupiter:junit-jupiter-params:5.3.2 "
58+ testImplementation "org.junit.jupiter:junit-jupiter-params:5.4.0 "
5959
6060 // (Optional) If you also have JUnit 4-based tests
6161 testImplementation "junit:junit:4.12"
62- testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.3.2 "
62+ testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.4.0 "
6363 }
6464 ```
6565</details >
@@ -74,15 +74,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
7474
7575 dependencies {
7676 // (Required) Writing and executing Unit Tests on the JUnit Platform
77- testImplementation(" org.junit.jupiter:junit-jupiter-api:5.3.2 " )
78- testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.3.2 " )
77+ testImplementation(" org.junit.jupiter:junit-jupiter-api:5.4.0 " )
78+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.4.0 " )
7979
8080 // (Optional) If you need "Parameterized Tests"
81- testImplementation(" org.junit.jupiter:junit-jupiter-params:5.3.2 " )
81+ testImplementation(" org.junit.jupiter:junit-jupiter-params:5.4.0 " )
8282
8383 // (Optional) If you also have JUnit 4-based tests
8484 testImplementation(" junit:junit:4.12" )
85- testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.3.2 " )
85+ testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.4.0 " )
8686 }
8787 ```
8888</details >
@@ -123,13 +123,13 @@ To start writing instrumentation tests with JUnit Jupiter, add the following to
123123
124124 dependencies {
125125 // (Required) Writing tests for JUnit Jupiter
126- androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.3.2 "
126+ androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.4.0 "
127127 // (Required) The instrumentation test companion library
128128 androidTestImplementation "de.mannodermaus.junit5:android-instrumentation-test:0.2.2"
129129
130130 // (Required) Runtime dependencies to orchestrate the execution on-device
131- androidTestRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.2 "
132- androidTestRuntimeOnly "org.junit.platform:junit-platform-runner:1.3.2 "
131+ androidTestRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.4.0 "
132+ androidTestRuntimeOnly "org.junit.platform:junit-platform-runner:1.4.0 "
133133 androidTestRuntimeOnly "de.mannodermaus.junit5:android-instrumentation-test-runner:0.2.2"
134134 }
135135 ```
@@ -154,13 +154,13 @@ To start writing instrumentation tests with JUnit Jupiter, add the following to
154154 }
155155 dependencies {
156156 // (Required) Writing tests for JUnit Jupiter
157- androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.3.2 ")
157+ androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.4.0 ")
158158 // (Required) The instrumentation test companion library
159159 androidTestImplementation("de.mannodermaus.junit5:android-instrumentation-test:0.2.2")
160160
161161 // (Required) Runtime dependencies to orchestrate the execution on-device
162- androidTestRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.3.2 ")
163- androidTestRuntimeOnly("org.junit.platform:junit-platform-runner:1.3.2 ")
162+ androidTestRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.4.0 ")
163+ androidTestRuntimeOnly("org.junit.platform:junit-platform-runner:1.4.0 ")
164164 androidTestRuntimeOnly("de.mannodermaus.junit5:android-instrumentation-test-runner:0.2.2")
165165 }
166166 ```
0 commit comments