@@ -19,7 +19,7 @@ Furthermore, this repository provides a small showcase of the functionality prov
19
19
``` groovy
20
20
buildscript {
21
21
dependencies {
22
- classpath "de.mannodermaus.gradle.plugins:android-junit5:1.4.1 .0"
22
+ classpath "de.mannodermaus.gradle.plugins:android-junit5:1.4.2 .0"
23
23
}
24
24
}
25
25
```
@@ -31,7 +31,7 @@ Furthermore, this repository provides a small showcase of the functionality prov
31
31
``` kotlin
32
32
buildscript {
33
33
dependencies {
34
- classpath(" de.mannodermaus.gradle.plugins:android-junit5:1.4.1 .0" )
34
+ classpath(" de.mannodermaus.gradle.plugins:android-junit5:1.4.2 .0" )
35
35
}
36
36
}
37
37
```
@@ -51,15 +51,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
51
51
52
52
dependencies {
53
53
// (Required) Writing and executing Unit Tests on the JUnit Platform
54
- testImplementation "org.junit.jupiter:junit-jupiter-api:5.4.1 "
55
- testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.4.1 "
54
+ testImplementation "org.junit.jupiter:junit-jupiter-api:5.4.2 "
55
+ testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.4.2 "
56
56
57
57
// (Optional) If you need "Parameterized Tests"
58
- testImplementation "org.junit.jupiter:junit-jupiter-params:5.4.1 "
58
+ testImplementation "org.junit.jupiter:junit-jupiter-params:5.4.2 "
59
59
60
60
// (Optional) If you also have JUnit 4-based tests
61
61
testImplementation "junit:junit:4.12"
62
- testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.4.1 "
62
+ testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.4.2 "
63
63
}
64
64
```
65
65
</details >
@@ -74,15 +74,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
74
74
75
75
dependencies {
76
76
// (Required) Writing and executing Unit Tests on the JUnit Platform
77
- testImplementation(" org.junit.jupiter:junit-jupiter-api:5.4.1 " )
78
- testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.4.1 " )
77
+ testImplementation(" org.junit.jupiter:junit-jupiter-api:5.4.2 " )
78
+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.4.2 " )
79
79
80
80
// (Optional) If you need "Parameterized Tests"
81
- testImplementation(" org.junit.jupiter:junit-jupiter-params:5.4.1 " )
81
+ testImplementation(" org.junit.jupiter:junit-jupiter-params:5.4.2 " )
82
82
83
83
// (Optional) If you also have JUnit 4-based tests
84
84
testImplementation(" junit:junit:4.12" )
85
- testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.4.1 " )
85
+ testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.4.2 " )
86
86
}
87
87
```
88
88
</details >
@@ -130,7 +130,7 @@ To start writing instrumentation tests with JUnit Jupiter, make the following ch
130
130
dependencies {
131
131
// 5) Jupiter API & Test Runner, if you don't have it already
132
132
androidTestImplementation "androidx.test:runner:1.1.1"
133
- androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.4.1 "
133
+ androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.4.2 "
134
134
135
135
// 6) The instrumentation test companion libraries
136
136
androidTestImplementation "de.mannodermaus.junit5:android-test-core:1.0.0"
@@ -165,7 +165,7 @@ To start writing instrumentation tests with JUnit Jupiter, make the following ch
165
165
dependencies {
166
166
// 5) Jupiter API & Test Runner, if you don't have it already
167
167
androidTestImplementation("androidx.test:runner:1.1.1")
168
- androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.4.1 ")
168
+ androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.4.2 ")
169
169
170
170
// 6) The instrumentation test companion libraries
171
171
androidTestImplementation("de.mannodermaus.junit5:android-test-core:1.0.0")
0 commit comments