Archived
1
0
Fork 0

Add test for unique packet IDs

This commit is contained in:
Moritz Ruth 2020-09-09 23:49:08 +02:00
parent 4be30418fb
commit 2b522d0d43
6 changed files with 57 additions and 5 deletions

View file

@ -16,6 +16,8 @@ val moshiVersion = properties["version.moshi"].toString()
val coroutinesVersion = properties["version.kotlinx-coroutines"].toString()
val nettyVersion = properties["version.netty"].toString()
val slf4jVersion = properties["version.slf4j"].toString()
val junitVersion = properties["version.junit"].toString()
val striktVersion = properties["version.strikt"].toString()
dependencies {
// Kotlin
@ -33,9 +35,9 @@ dependencies {
api("io.netty:netty-buffer:${nettyVersion}")
// Testing
testImplementation("io.strikt:strikt-core:0.26.1")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.6.2")
testImplementation("io.strikt:strikt-core:${striktVersion}")
testImplementation("org.junit.jupiter:junit-jupiter-api:${junitVersion}")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")
}
tasks {