Skip to content

Commit 9be92b0

Browse files
committed
Update test plan constructor away from OutputDirectoryProvider
This was deprecated in JUnit 5.14
1 parent c7efb72 commit 9be92b0

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

build-logic/src/main/kotlin/Environment.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ object Artifacts {
103103
*/
104104
object Instrumentation {
105105
const val groupId = "de.mannodermaus.junit5"
106-
private const val currentVersion = "1.8.1-SNAPSHOT"
106+
private const val currentVersion = "1.9.0-SNAPSHOT"
107107
private const val latestStableVersion = "1.8.0"
108108

109109
val Core = Deployed(

instrumentation/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ Change Log
33

44
## Unreleased
55

6+
- Adjust constructor of `ModifiedTestPlan` to conform to newly added interface within JUnit 5
7+
68
## 1.8.0 (2025-06-11)
79

810
- Compile with SDK 35

instrumentation/runner/src/main/kotlin/de/mannodermaus/junit5/internal/runners/AndroidJUnitPlatformTestTree.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ internal class AndroidJUnitPlatformTestTree(
184184
TestPlan(
185185
/* containsTests = */ delegate.containsTests(),
186186
/* configurationParameters = */ delegate.configurationParameters,
187-
/* outputDirectoryProvider = */ delegate.outputDirectoryProvider
187+
/* outputDirectoryCreator = */ delegate.outputDirectoryCreator
188188
) {
189189

190190
fun getRealParent(child: TestIdentifier?): Optional<TestIdentifier> {

0 commit comments

Comments
 (0)