Fehlender Test ergänzt
jbialek/DoMapStitch/pipeline/head There was a failure building this commit Details

This commit is contained in:
Johannes Bialek 2022-10-05 01:26:36 +02:00
parent 894dd1c3f7
commit 53f1b45b42
2 changed files with 19 additions and 2 deletions

View File

@ -8,8 +8,12 @@ repositories {
} }
dependencies { dependencies {
implementation group: 'org.codehaus.groovy', name: 'groovy-all', version: '3.0.13' implementation platform('org.apache.groovy:groovy-bom:4.0.5')
implementation group: 'commons-io', name: 'commons-io', version: '2.11.0' implementation 'org.apache.groovy:groovy'
implementation 'commons-io:commons-io:2.11.0'
testImplementation platform("org.spockframework:spock-bom:2.3-groovy-4.0")
testImplementation "org.spockframework:spock-core"
} }
application { application {

View File

@ -0,0 +1,13 @@
package de.daggit.domap.stich
import spock.lang.Specification
class StichterSpec extends Specification {
def "Leerer Test"() {
when:
def a = "Leer"
then:
a == "Leer"
}
}