Kaydet (Commit) 7c815d30 authored tarafından Noel Grandin's avatar Noel Grandin

improve the error message when a java UNO test fails

Change-Id: Ibd9f121b94c00040acd3a1d2f6f702d711295f2d
üst f7a7a9dd
......@@ -34,7 +34,10 @@ public final class UnoApiTest {
}
@Test public void test() throws Exception {
assertTrue(
assertTrue("org.openoffice.Runner failed with params: -sce " + Argument.get("sce")
+ "-xcl " + Argument.get("xcl")
+ " -tdoc " + Argument.get("tdoc")
+ " -cs " + connection.getDescription(),
Runner.run(
"-sce", Argument.get("sce"), "-xcl", Argument.get("xcl"), "-tdoc",
Argument.get("tdoc"), "-cs", connection.getDescription()));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment