@@ -56,15 +56,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
5656
5757 dependencies {
5858 // (Required) Writing and executing Unit Tests on the JUnit Platform
59- testImplementation "org.junit.jupiter:junit-jupiter-api:5.6.0 "
60- testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.6.0 "
59+ testImplementation "org.junit.jupiter:junit-jupiter-api:5.6.1 "
60+ testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.6.1 "
6161
6262 // (Optional) If you need "Parameterized Tests"
63- testImplementation "org.junit.jupiter:junit-jupiter-params:5.6.0 "
63+ testImplementation "org.junit.jupiter:junit-jupiter-params:5.6.1 "
6464
6565 // (Optional) If you also have JUnit 4-based tests
6666 testImplementation "junit:junit:4.13"
67- testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.6.0 "
67+ testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.6.1 "
6868 }
6969 ```
7070</details >
@@ -79,15 +79,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
7979
8080 dependencies {
8181 // (Required) Writing and executing Unit Tests on the JUnit Platform
82- testImplementation(" org.junit.jupiter:junit-jupiter-api:5.6.0 " )
83- testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.6.0 " )
82+ testImplementation(" org.junit.jupiter:junit-jupiter-api:5.6.1 " )
83+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.6.1 " )
8484
8585 // (Optional) If you need "Parameterized Tests"
86- testImplementation(" org.junit.jupiter:junit-jupiter-params:5.6.0 " )
86+ testImplementation(" org.junit.jupiter:junit-jupiter-params:5.6.1 " )
8787
8888 // (Optional) If you also have JUnit 4-based tests
8989 testImplementation(" junit:junit:4.13" )
90- testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.6.0 " )
90+ testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.6.1 " )
9191 }
9292 ```
9393</details >
@@ -135,7 +135,7 @@ To start writing instrumentation tests with JUnit Jupiter, make the following ch
135135 dependencies {
136136 // 5) Jupiter API & Test Runner, if you don't have it already
137137 androidTestImplementation "androidx.test:runner:1.2.0"
138- androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.6.0 "
138+ androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.6.1 "
139139
140140 // 6) The instrumentation test companion libraries
141141 androidTestImplementation "de.mannodermaus.junit5:android-test-core:1.2.0"
@@ -170,7 +170,7 @@ To start writing instrumentation tests with JUnit Jupiter, make the following ch
170170 dependencies {
171171 // 5) Jupiter API & Test Runner, if you don't have it already
172172 androidTestImplementation("androidx.test:runner:1.2.0")
173- androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0 ")
173+ androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.6.1 ")
174174
175175 // 6) The instrumentation test companion libraries
176176 androidTestImplementation("de.mannodermaus.junit5:android-test-core:1.2.0")
0 commit comments