diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2003-05-22 07:40:41 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2003-05-22 07:40:41 +0000 |
commit | 8e64f33eba79b23011fefd99f6556d7fb83ec621 (patch) | |
tree | 6937d118ae9d37ede76aa26f6f3febf5bcc5ebef | |
parent | 6ac43db30cc559cbcd898c129f46ba92a857d4f9 (diff) |
INTEGRATION: CWS uno4 (1.3.2); FILE MERGED
2003/05/09 12:28:43 sb 1.3.2.1: #108642# United TestBed from jurt and bridges.
-rw-r--r-- | bridges/test/java_uno/any/TestRemote.java | 10 |
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 { |