1 // **********************************************************************
3 // Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
8 // **********************************************************************
10 package test
.Ice
.facets
;
12 import test
.Ice
.facets
.Test
.GPrx
;
14 public class Client
extends test
.Util
.Application
16 public int run(String
[] args
)
18 Ice
.Communicator communicator
= communicator();
19 GPrx g
= AllTests
.allTests(communicator
, getWriter());
24 protected Ice
.InitializationData
getInitData(Ice
.StringSeqHolder argsH
)
26 Ice
.InitializationData initData
= new Ice
.InitializationData();
27 initData
.properties
= Ice
.Util
.createProperties(argsH
);
28 initData
.properties
.setProperty("Ice.Package.Test", "test.Ice.binding");
32 public static void main(String
[] args
)
34 Client app
= new Client();
35 int result
= app
.main("Client", args
);