@@ -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.3.1.1 "
22
+ classpath "de.mannodermaus.gradle.plugins:android-junit5:1.3.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.3.1.1 " )
34
+ classpath(" de.mannodermaus.gradle.plugins:android-junit5:1.3.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.3.1 "
55
- testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.1 "
54
+ testImplementation "org.junit.jupiter:junit-jupiter-api:5.3.2 "
55
+ testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.2 "
56
56
57
57
// (Optional) If you need "Parameterized Tests"
58
- testImplementation "org.junit.jupiter:junit-jupiter-params:5.3.1 "
58
+ testImplementation "org.junit.jupiter:junit-jupiter-params:5.3.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.3.1 "
62
+ testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.3.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.3.1 " )
78
- testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.3.1 " )
77
+ testImplementation(" org.junit.jupiter:junit-jupiter-api:5.3.2 " )
78
+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:5.3.2 " )
79
79
80
80
// (Optional) If you need "Parameterized Tests"
81
- testImplementation(" org.junit.jupiter:junit-jupiter-params:5.3.1 " )
81
+ testImplementation(" org.junit.jupiter:junit-jupiter-params:5.3.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.3.1 " )
85
+ testRuntimeOnly(" org.junit.vintage:junit-vintage-engine:5.3.2 " )
86
86
}
87
87
```
88
88
</details >
@@ -117,12 +117,12 @@ To start writing instrumentation tests with JUnit Jupiter, add the following to
117
117
}
118
118
dependencies {
119
119
// (Required) Writing tests for JUnit Jupiter
120
- androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.3.1 "
120
+ androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.3.2 "
121
121
// (Required) The instrumentation test companion library
122
122
androidTestImplementation "de.mannodermaus.junit5:android-instrumentation-test:0.2.2"
123
123
124
124
// (Required) Runtime dependencies to orchestrate the execution on-device
125
- androidTestRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.1 "
125
+ androidTestRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.2 "
126
126
androidTestRuntimeOnly "org.junit.platform:junit-platform-runner:1.3.1"
127
127
androidTestRuntimeOnly "de.mannodermaus.junit5:android-instrumentation-test-runner:0.2.2"
128
128
}
@@ -143,12 +143,12 @@ To start writing instrumentation tests with JUnit Jupiter, add the following to
143
143
}
144
144
dependencies {
145
145
// (Required) Writing tests for JUnit Jupiter
146
- androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.3.1 ")
146
+ androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.3.2 ")
147
147
// (Required) The instrumentation test companion library
148
148
androidTestImplementation("de.mannodermaus.junit5:android-instrumentation-test:0.2.2")
149
149
150
150
// (Required) Runtime dependencies to orchestrate the execution on-device
151
- androidTestRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.3.1 ")
151
+ androidTestRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.3.2 ")
152
152
androidTestRuntimeOnly("org.junit.platform:junit-platform-runner:1.3.1")
153
153
androidTestRuntimeOnly("de.mannodermaus.junit5:android-instrumentation-test-runner:0.2.2")
154
154
}
0 commit comments