Created first test

This commit is contained in:
Georgy Litvinov 2021-02-24 17:25:26 +01:00
parent 80441c4ad9
commit da9326a19e
4 changed files with 49 additions and 8 deletions

View file

@ -16,7 +16,9 @@ configurations{
bundledLibs
}
dependencies{
testImplementation 'junit:junit:4.13'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.7.1'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.7.1'
testImplementation group: 'commons-io', name: 'commons-io', version: '2.8.0'
bundledLibs 'org.libreoffice:jurt:5.3.2'
bundledLibs 'org.libreoffice:juh:5.3.2'
@ -25,7 +27,6 @@ dependencies{
bundledLibs 'org.json:json:20190722'
bundledLibs group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
bundledLibs group: 'ch.qos.logback', name: 'logback-core', version: '1.2.3'
compile 'junit:junit:4.13'
bundledLibs group: 'com.miglayout', name: 'miglayout-swing', version: '5.2'
bundledLibs group: 'org.apache.jena', name: 'jena-core', version: '3.15.0'
bundledLibs group: 'org.apache.jena', name: 'jena-arq', version: '3.15.0'
@ -203,7 +204,10 @@ task oxtNew(type: Zip){
}
task regressionTests(type: Test){
useJUnit()
testLogging {
events "passed", "skipped", "failed"
}
}
task setVersion(){