Fehlender Test ergänzt
jbialek/DoMapStitch/pipeline/head There was a failure building this commit
Details
jbialek/DoMapStitch/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
894dd1c3f7
commit
53f1b45b42
|
|
@ -8,8 +8,12 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation group: 'org.codehaus.groovy', name: 'groovy-all', version: '3.0.13'
|
||||
implementation group: 'commons-io', name: 'commons-io', version: '2.11.0'
|
||||
implementation platform('org.apache.groovy:groovy-bom:4.0.5')
|
||||
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 {
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue