summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr')
-rwxr-xr-xconfigmgr/qa/unoapi/Test.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/configmgr/qa/unoapi/Test.java b/configmgr/qa/unoapi/Test.java
index 4d1f5a3c4b..d6bc19df44 100755
--- a/configmgr/qa/unoapi/Test.java
+++ b/configmgr/qa/unoapi/Test.java
@@ -27,6 +27,7 @@ package org.openoffice.configmgr.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 {
@@ -37,13 +38,15 @@ public final class Test {
@org.junit.After public void tearDown()
throws InterruptedException, com.sun.star.uno.Exception
{
+ Thread.sleep(4000);
connection.tearDown();
}
@org.junit.Test public void test() {
assertTrue(
Runner.run(
- "-sce", "module.sce", "-cs", connection.getDescription()));
+ "-sce", Argument.get("sce"), "-xcl", Argument.get("xcl"), "-tdoc",
+ Argument.get("tdoc"), "-cs", connection.getDescription()));
}
private final OfficeConnection connection = new OfficeConnection();