Added Tests, fixed detected bugs and updated JUnit

This commit is contained in:
Timmeey86
2018-11-22 23:30:49 +01:00
parent 7683e86d8b
commit 560d388df4
6 changed files with 179 additions and 108 deletions

View File

@@ -190,8 +190,9 @@ project(":tests"){
dependencies {
testImplementation project(":core")
testImplementation('org.junit.jupiter:junit-jupiter-api:5.1.0')
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.1.0')
testImplementation "org.junit.jupiter:junit-jupiter-params:5.3.1"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.3.1"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.1"
testImplementation "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
testImplementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
}