Add test for unique packet IDs
This commit is contained in:
parent
4be30418fb
commit
2b522d0d43
6 changed files with 57 additions and 5 deletions
|
@ -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 {
|
||||
|
|
Reference in a new issue