move Tests to the correct location
This commit is contained in:
parent
a2e05edb7a
commit
0edb9572b6
@ -30,9 +30,11 @@ dependencies {
|
|||||||
implementation 'org.springframework.boot:spring-boot-devtools'
|
implementation 'org.springframework.boot:spring-boot-devtools'
|
||||||
implementation 'org.xerial:sqlite-jdbc:3.31.1'
|
implementation 'org.xerial:sqlite-jdbc:3.31.1'
|
||||||
implementation 'org.yaml:snakeyaml:1.26'
|
implementation 'org.yaml:snakeyaml:1.26'
|
||||||
testCompile("org.springframework.boot:spring-boot-starter-test")
|
//testCompile("org.springframework.boot:spring-boot-starter-test")
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'
|
//testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'
|
||||||
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
|
//testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
|
||||||
|
|
||||||
|
testImplementation 'org.junit.jupiter:junit-jupiter:5.6.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
group 'org.hso'
|
group 'org.hso'
|
||||||
@ -44,4 +46,8 @@ bootRun {
|
|||||||
|
|
||||||
test {
|
test {
|
||||||
useJUnitPlatform()
|
useJUnitPlatform()
|
||||||
|
|
||||||
|
testLogging {
|
||||||
|
events 'PASSED', 'FAILED', 'SKIPPED'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user