mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-12-22 21:07:57 +01:00
Bump mockito to 4.5.1
This commit is contained in:
parent
8753480e82
commit
aa346459e2
2 changed files with 5 additions and 1 deletions
|
@ -7,13 +7,16 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
// JUnit
|
||||||
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
|
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
|
||||||
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
|
||||||
|
|
||||||
// Testing Exit Codes in JUnit
|
// Testing Exit Codes in JUnit
|
||||||
// https://todd.ginsberg.com/post/testing-system-exit/
|
// https://todd.ginsberg.com/post/testing-system-exit/
|
||||||
testImplementation "com.ginsberg:junit5-system-exit:$junitSysExitVersion"
|
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(project(":sop-java"))
|
||||||
implementation "info.picocli:picocli:4.6.3"
|
implementation "info.picocli:picocli:4.6.3"
|
||||||
|
|
|
@ -10,5 +10,6 @@ allprojects {
|
||||||
javaSourceCompatibility = 1.8
|
javaSourceCompatibility = 1.8
|
||||||
junitVersion = '5.8.2'
|
junitVersion = '5.8.2'
|
||||||
junitSysExitVersion = '1.1.2'
|
junitSysExitVersion = '1.1.2'
|
||||||
|
mockitoVersion = '4.5.1'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue