1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 package test.java_uno.anytest;
25 
26 import com.sun.star.bridge.XInstanceProvider;
27 import com.sun.star.lib.TestBed;
28 import com.sun.star.uno.UnoRuntime;
29 import com.sun.star.uno.XComponentContext;
30 
31 public final class TestRemote {
main(String[] args)32     public static void main(String[] args) throws Exception {
33         boolean success = new TestBed().execute(
34             new Provider(), false, Client.class, 0);
35         System.out.println("success? " + success);
36         System.exit(success ? 0 : 1);
37     }
38 
39     public static final class Client extends TestBed.Client {
main(String[] args)40         public static void main(String[] args) {
41             new Client().execute();
42         }
43 
run(XComponentContext context)44         protected boolean run(XComponentContext context) throws Throwable {
45             XTransport transport = UnoRuntime.queryInterface(
46                 XTransport.class, getBridge(context).getInstance("Transport"));
47             return TestAny.test(transport, true);
48         }
49     }
50 
51     private static final class Provider implements XInstanceProvider {
getInstance(String instanceName)52         public Object getInstance(String instanceName) {
53             return new XTransport() {
54                     public Object mapAny(Object any) {
55                         return any;
56                     }
57                 };
58         }
59     }
60 }
61