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 | 80ae0dcf217c23ff73b82d0c37274415012942ab (patch) | |
tree | 9ee8775e97cecbb698cfd179d2459bb35fb24f61 /sw/qa/unoapi | |
parent | 42c3881914531e6d81d6fb05bdc7b308db98146c (diff) |
gnumake3: more work on junit subsequenttest migration
Diffstat (limited to 'sw/qa/unoapi')
-rw-r--r-- | sw/qa/unoapi/Test.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sw/qa/unoapi/Test.java b/sw/qa/unoapi/Test.java index e0311cc069bb..8a5b9b58fb95 100644 --- a/sw/qa/unoapi/Test.java +++ b/sw/qa/unoapi/Test.java @@ -27,6 +27,7 @@ package org.openoffice.sw.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", "sw.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(); |