Merge branch 'master' into develop

This commit is contained in:
ByteHamster
2026-08-02 14:38:57 +02:00
40 changed files with 1043 additions and 224 deletions

13
mockitoAgent.gradle Normal file
View File

@ -0,0 +1,13 @@
configurations {
mockitoAgent
}
dependencies {
mockitoAgent(libs.mockito.core) {
transitive = false
}
}
tasks.withType(Test).configureEach {
jvmArgs "-javaagent:${configurations.mockitoAgent.singleFile}"
}