test: NetInputStreamTest, NetOutputStreamTest
This commit is contained in:
10
build.gradle
10
build.gradle
@@ -17,6 +17,7 @@ repositories {
|
||||
ext {
|
||||
slf4j_version = '1.7.25'
|
||||
lombok_version = '1.18.2'
|
||||
junit_version = '5.5.2'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
@@ -29,5 +30,14 @@ dependencies {
|
||||
/* LOMBOK */
|
||||
annotationProcessor (group: 'org.projectlombok', name: 'lombok', version: lombok_version)
|
||||
compileOnly (group: 'org.projectlombok', name: 'lombok', version: lombok_version)
|
||||
|
||||
/* TESTING */
|
||||
testImplementation (group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: junit_version)
|
||||
testRuntimeOnly (group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: junit_version)
|
||||
testImplementation (group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: junit_version)
|
||||
testImplementation (group: 'org.apache.commons', name: 'commons-lang3', version: '3.9')
|
||||
}
|
||||
|
||||
test {
|
||||
useJUnitPlatform()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user