Integration tests for mailbox using mailbox-lib as submodule

This commit is contained in:
Sebastian Kürten
2022-09-21 16:08:19 +02:00
parent 34815eb1a5
commit 459b97c1d4
41 changed files with 858 additions and 146 deletions

View File

@@ -7,8 +7,8 @@ import static java.util.Collections.list
plugins {
id 'java'
id 'idea'
id 'org.jetbrains.kotlin.jvm' version '1.4.32'
id 'org.jetbrains.kotlin.kapt' version '1.4.32'
id 'org.jetbrains.kotlin.jvm'
id 'org.jetbrains.kotlin.kapt'
id 'witness'
}
apply from: 'witness.gradle'
@@ -36,7 +36,7 @@ dependencies {
def junitVersion = '5.5.2'
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
testRuntime "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
testImplementation 'io.mockk:mockk:1.10.4'
testImplementation 'org.skyscreamer:jsonassert:1.5.0'
testImplementation 'khttp:khttp:0.1.0'