mirror of
https://github.com/yairm210/Unciv.git
synced 2024-12-22 20:44:25 +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:
parent
85ed8a27d3
commit
5779bdaa4f
@ -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,13 +115,9 @@ 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", (
|
||||
Assert.assertTrue("$type cannot be in Ice", (
|
||||
type.value.uniques.contains("Can enter ice tiles"))
|
||||
|| type.value.uniques.contains("Can pass through impassable tiles"
|
||||
) == unit.movement.canPassThrough(tile))
|
||||
|
Loading…
Reference in New Issue
Block a user