diff options
author | Bjoern Michaelsen <b_michaelsen@openoffice.org> | 2011-01-11 21:16:21 +0100 |
---|---|---|
committer | Bjoern Michaelsen <b_michaelsen@openoffice.org> | 2011-01-11 21:16:21 +0100 |
commit | f27dec459621543c9dcd94c72ab6af8147b8b4d6 (patch) | |
tree | 6a10b93a8ef8afa598052d814ad38e2a6e44bd50 /xmloff/qa | |
parent | cc72dd1a32cf6acaba613fa6ea289a7bd89ef1d2 (diff) |
gnumake3: more work on junit subsequenttest migration
Diffstat (limited to 'xmloff/qa')
-rw-r--r-- | xmloff/qa/unoapi/Test.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xmloff/qa/unoapi/Test.java b/xmloff/qa/unoapi/Test.java index d66144f108e7..833c2d770c9f 100644 --- a/xmloff/qa/unoapi/Test.java +++ b/xmloff/qa/unoapi/Test.java @@ -27,6 +27,7 @@ package org.openoffice.xmloff.qa.unoapi; import org.openoffice.Runner; import org.openoffice.test.OfficeConnection; +import org.openoffice.test.Argument; import static org.junit.Assert.*; public final class Test { @@ -43,8 +44,8 @@ public final class Test { @org.junit.Test public void test() { assertTrue( Runner.run( - "-sce", "xmloff.sce", "-xcl", "knownissues.xcl", "-tdoc", - "testdocuments", "-cs", connection.getDescription())); + "-sce", Argument.get("sce"), "-xcl", Argument.get("xcl"), "-tdoc", + Argument.get("tdoc"), "-cs", connection.getDescription())); } private final OfficeConnection connection = new OfficeConnection(); |