summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bridges/test/java_uno/any/TestRemote.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/bridges/test/java_uno/any/TestRemote.java b/bridges/test/java_uno/any/TestRemote.java
index a270c98bc0f7..742837fdb60d 100644
--- a/bridges/test/java_uno/any/TestRemote.java
+++ b/bridges/test/java_uno/any/TestRemote.java
@@ -2,9 +2,9 @@
*
* $RCSfile: TestRemote.java,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2003-04-23 16:34:12 $
+ * last change: $Author: vg $ $Date: 2003-05-22 08:40:41 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -63,12 +63,14 @@ package test.java_uno.anytest;
import com.sun.star.bridge.XBridge;
import com.sun.star.bridge.XInstanceProvider;
+import com.sun.star.lib.TestBed;
import com.sun.star.uno.UnoRuntime;
-import test.java_uno.TestBed;
public final class TestRemote {
public static void main(String[] args) throws Exception {
- new TestBed().execute(new Provider(), false, Client.class, 0);
+ System.out.println(
+ "success? "
+ + new TestBed().execute(new Provider(), false, Client.class, 0));
}
public static final class Client extends TestBed.Client {