Added config for regression tests
This commit is contained in:
parent
d96897d5ae
commit
6eeaebecf4
2 changed files with 25 additions and 10 deletions
33
build.gradle
33
build.gradle
|
@ -11,14 +11,27 @@ properties.setProperty('releaseVersion', project.version )
|
||||||
mkdir "src/main/tmp/w2phtml"
|
mkdir "src/main/tmp/w2phtml"
|
||||||
propertyDestFile.withWriter { properties.store(it, null) }
|
propertyDestFile.withWriter { properties.store(it, null) }
|
||||||
|
|
||||||
|
sourceSets {
|
||||||
|
regressionTest {
|
||||||
|
java {
|
||||||
|
compileClasspath += main.output + test.output
|
||||||
|
runtimeClasspath += main.output + files('src/main/java')
|
||||||
|
java.srcDir file('src/r_tests/java')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = 1.8
|
||||||
configurations{
|
configurations{
|
||||||
bundledLibs
|
bundledLibs
|
||||||
|
regressionTestCompile.extendsFrom mainCompile
|
||||||
|
regressionTestRuntime.extendsFrom mainRuntime
|
||||||
|
regressionTestRuntime.extendsFrom bundledLibs
|
||||||
}
|
}
|
||||||
dependencies{
|
dependencies{
|
||||||
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.7.1'
|
regressionTestImplementation group: 'commons-io', name: 'commons-io', version: '2.8.0'
|
||||||
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.7.1'
|
regressionTestImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.7.1'
|
||||||
testImplementation group: 'commons-io', name: 'commons-io', version: '2.8.0'
|
regressionTestImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.7.1'
|
||||||
|
regressionTestRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
|
||||||
|
|
||||||
bundledLibs 'org.libreoffice:jurt:5.3.2'
|
bundledLibs 'org.libreoffice:jurt:5.3.2'
|
||||||
bundledLibs 'org.libreoffice:juh:5.3.2'
|
bundledLibs 'org.libreoffice:juh:5.3.2'
|
||||||
|
@ -202,12 +215,14 @@ task oxtNew(type: Zip){
|
||||||
from 'releasenotes.txt'
|
from 'releasenotes.txt'
|
||||||
include '*'
|
include '*'
|
||||||
}
|
}
|
||||||
|
task regressionTest(type: Test) {
|
||||||
task regressionTests(type: Test){
|
testClassesDirs = sourceSets.regressionTest.output.classesDirs
|
||||||
useJUnit()
|
classpath = sourceSets.regressionTest.runtimeClasspath
|
||||||
testLogging {
|
useJUnitPlatform()
|
||||||
events "passed", "skipped", "failed"
|
testLogging {
|
||||||
}
|
events "passed", "skipped", "failed", "standardOut", "standardError"
|
||||||
|
}
|
||||||
|
mustRunAfter jar
|
||||||
}
|
}
|
||||||
|
|
||||||
task setVersion(){
|
task setVersion(){
|
||||||
|
|
|
@ -14,7 +14,7 @@ public class TestExample {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@DisplayName("Heading with page break before")
|
@DisplayName("Heading with page break before")
|
||||||
public static void main(String[] args) throws Exception {
|
void testExample() throws Exception{
|
||||||
|
|
||||||
List<String> arguments = new ArrayList<String>();
|
List<String> arguments = new ArrayList<String>();
|
||||||
arguments.add("-page_break_style");
|
arguments.add("-page_break_style");
|
Loading…
Add table
Reference in a new issue