Bump mockito to 4.5.1

This commit is contained in:
Paul Schaub 2022-04-26 00:33:20 +02:00
parent 8753480e82
commit aa346459e2
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
2 changed files with 5 additions and 1 deletions

View File

@ -7,13 +7,16 @@ plugins {
}
dependencies {
// JUnit
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
// Testing Exit Codes in JUnit
// https://todd.ginsberg.com/post/testing-system-exit/
testImplementation "com.ginsberg:junit5-system-exit:$junitSysExitVersion"
testImplementation 'org.mockito:mockito-core:4.3.1'
// Mocking Components
testImplementation "org.mockito:mockito-core:$mockitoVersion"
implementation(project(":sop-java"))
implementation "info.picocli:picocli:4.6.3"

View File

@ -10,5 +10,6 @@ allprojects {
javaSourceCompatibility = 1.8
junitVersion = '5.8.2'
junitSysExitVersion = '1.1.2'
mockitoVersion = '4.5.1'
}
}