-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
56 lines (44 loc) · 1.15 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
id 'application'
}
group 'org.example'
version '1.0-SNAPSHOT'
mainClassName = "VirtualMemoryKt"
repositories {
mavenCentral()
}
configurations {
integrationTestsImplementation.extendsFrom implementation
integrationTestsRuntimeOnly.extendsFrom runtimeOnly
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation 'org.junit.jupiter:junit-jupiter:5.4.2'
implementation 'org.junit.jupiter:junit-jupiter:5.4.2'
integrationTestsImplementation "org.jetbrains.kotlin:kotlin-test:1.4.10"
}
sourceSets {
integrationTests {
compileClasspath += sourceSets.main.output
runtimeClasspath += sourceSets.main.output
java {
srcDirs = ['src/IntegrationTests']
}
}
}
test {
useJUnitPlatform()
}
run {
standardInput = System.in
}
task IntegrationTests(type: Test) {
testClassesDirs = sourceSets.integrationTests.output.classesDirs
classpath = sourceSets.integrationTests.runtimeClasspath
useJUnitPlatform()
doLast {
delete "src/IntegrationTests/tmpOutput.txt"
}
}