@@ -16,7 +16,7 @@ Furthermore, this repository provides a small showcase of the functionality prov
16
16
``` groovy
17
17
buildscript {
18
18
dependencies {
19
- classpath "de.mannodermaus.gradle.plugins:android-junit5:1.2.0 .0"
19
+ classpath "de.mannodermaus.gradle.plugins:android-junit5:1.3.1 .0"
20
20
}
21
21
}
22
22
```
@@ -30,15 +30,15 @@ apply plugin: "de.mannodermaus.android-junit5"
30
30
31
31
dependencies {
32
32
// (Required) Writing and executing Unit Tests on the JUnit Platform
33
- testImplementation "org.junit.jupiter:junit-jupiter-api:5.2.0 "
34
- testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.2.0 "
33
+ testImplementation "org.junit.jupiter:junit-jupiter-api:5.3.1 "
34
+ testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.1 "
35
35
36
36
// (Optional) If you need "Parameterized Tests"
37
- testImplementation "org.junit.jupiter:junit-jupiter-params:5.2.0 "
37
+ testImplementation "org.junit.jupiter:junit-jupiter-params:5.3.1 "
38
38
39
39
// (Optional) If you also have JUnit 4-based tests
40
40
testImplementation "junit:junit:4.12"
41
- testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.2.0 "
41
+ testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.3.1 "
42
42
}
43
43
```
44
44
@@ -67,13 +67,13 @@ android {
67
67
}
68
68
dependencies {
69
69
// (Required) Writing tests for JUnit Jupiter
70
- androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.2.0 "
70
+ androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.3.1 "
71
71
// (Required) The instrumentation test companion library
72
72
androidTestImplementation "de.mannodermaus.junit5:android-instrumentation-test:0.2.2"
73
73
74
74
// (Required) Runtime dependencies to orchestrate the execution on-device
75
- androidTestRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.2.0 "
76
- androidTestRuntimeOnly "org.junit.platform:junit-platform-runner:1.2.0 "
75
+ androidTestRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.1 "
76
+ androidTestRuntimeOnly "org.junit.platform:junit-platform-runner:1.3.1 "
77
77
androidTestRuntimeOnly "de.mannodermaus.junit5:android-instrumentation-test-runner:0.2.2"
78
78
}
79
79
```
0 commit comments