From f27dec459621543c9dcd94c72ab6af8147b8b4d6 Mon Sep 17 00:00:00 2001 From: Bjoern Michaelsen Date: Tue, 11 Jan 2011 21:16:21 +0100 Subject: gnumake3: more work on junit subsequenttest migration --- xmloff/qa/unoapi/Test.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'xmloff/qa/unoapi/Test.java') 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(); -- cgit