diff --git a/build.gradle b/build.gradle index dda75a6..4082237 100644 --- a/build.gradle +++ b/build.gradle @@ -16,6 +16,8 @@ configurations{ bundledLibs } dependencies{ + testImplementation 'junit:junit:4.13' + bundledLibs 'org.libreoffice:jurt:5.3.2' bundledLibs 'org.libreoffice:juh:5.3.2' bundledLibs 'org.libreoffice:ridl:5.3.2' @@ -23,7 +25,7 @@ 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.12' + 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' @@ -200,6 +202,10 @@ task oxtNew(type: Zip){ include '*' } +task regressionTests(type: Test){ + +} + task setVersion(){ ant.taskdef(name: 'xmltask', classpath: 'buildPlugins/xmltask.jar', classname: 'com.oopsconsultancy.xmltask.ant.XmlTask') ant.xmltask(source: 'src/main/oxt2/description.xml', dest: 'src/main/tmp/description.xml', report:'true') { diff --git a/src/test/java/w2phtml/regressionTests/TestExample.java b/src/test/java/w2phtml/regressionTests/TestExample.java new file mode 100644 index 0000000..12c9c6d --- /dev/null +++ b/src/test/java/w2phtml/regressionTests/TestExample.java @@ -0,0 +1,20 @@ +package w2phtml.regressionTests; + +import java.util.ArrayList; +import java.util.List; + +public class TestExample { + + public static void main(String[] args) throws Exception { + //long start = System.nanoTime(); + List arguments = new ArrayList(); + arguments.add("-page_break_style"); + arguments.add("height:3em;margin-top:1em;margin-bottom:1em;background-color:red;"); + arguments.add("-html5"); + arguments.add("/home/litvinovg/tmp/w2p-bug/test_5.odt"); + w2phtml.Application.main(arguments.toArray(new String[0])); + //long end = System.nanoTime(); + //long elapsedTime = end - start; + //System.out.println(elapsedTime/1000000); + } +}