mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-11 00:08:58 +07:00
Upgraded mockito versions.
Instead of forcing reflection to depend on latest kotlin version, I have a feeling the dependency is due to older mockito depending on older reflection.
This commit is contained in:
@ -113,13 +113,13 @@ project(":core") {
|
||||
"implementation"(project(":core"))
|
||||
|
||||
"implementation"("junit:junit:4.13.1")
|
||||
"implementation"("org.mockito:mockito-all:1.9.5")
|
||||
"implementation"("org.mockito:mockito-all:1.10.19")
|
||||
|
||||
"implementation"("com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion")
|
||||
"implementation"("com.badlogicgames.gdx:gdx:$gdxVersion")
|
||||
|
||||
"testImplementation"("junit:junit:4.13.1")
|
||||
"testImplementation"("org.mockito:mockito-all:1.9.5")
|
||||
"testImplementation"("org.mockito:mockito-all:1.10.19")
|
||||
"testImplementation"("io.mockk:mockk:1.9.3")
|
||||
|
||||
"testImplementation"("com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion")
|
||||
|
@ -8,14 +8,6 @@ java {
|
||||
sourceCompatibility = JavaVersion.VERSION_1_7
|
||||
}
|
||||
|
||||
tasks {
|
||||
compileJava {
|
||||
options.encoding = "UTF-8"
|
||||
}
|
||||
compileTestJava {
|
||||
options.encoding = "UTF-8"
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
main {
|
||||
|
@ -115,12 +115,8 @@ class UnitMovementAlgorithmsTests {
|
||||
|
||||
for (type in ruleSet.unitTypes) {
|
||||
unit.baseUnit = BaseUnit().apply { unitType = type.key; ruleset = ruleSet }
|
||||
|
||||
unit.updateUniques()
|
||||
|
||||
println(type.key + " " + unit.movement.canPassThrough(tile))
|
||||
println()
|
||||
|
||||
Assert.assertTrue("$type cannot be in Ice", (
|
||||
type.value.uniques.contains("Can enter ice tiles"))
|
||||
|| type.value.uniques.contains("Can pass through impassable tiles"
|
||||
|
Reference in New Issue
Block a user