diff options
author | Matthew Newhook <matthew@zeroc.com> | 2009-03-24 12:31:31 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2009-03-24 12:31:31 -0230 |
commit | 4cc5d77c383b6c91c3af9fe44df9687bb9b15580 (patch) | |
tree | 64ce3d6cf35b15497de50f298f7225a8c72f64b6 /java/test/Ice/objects/Client.java | |
parent | Merge commit 'origin/R3_3_branch' (diff) | |
download | ice-4cc5d77c383b6c91c3af9fe44df9687bb9b15580.tar.bz2 ice-4cc5d77c383b6c91c3af9fe44df9687bb9b15580.tar.xz ice-4cc5d77c383b6c91c3af9fe44df9687bb9b15580.zip |
Merged android-testsuite branch.
Diffstat (limited to 'java/test/Ice/objects/Client.java')
-rw-r--r-- | java/test/Ice/objects/Client.java | 60 |
1 files changed, 21 insertions, 39 deletions
diff --git a/java/test/Ice/objects/Client.java b/java/test/Ice/objects/Client.java index 3c7bc1cd9f8..dc5898a57cf 100644 --- a/java/test/Ice/objects/Client.java +++ b/java/test/Ice/objects/Client.java @@ -7,14 +7,15 @@ // // ********************************************************************** -import Test.*; +package test.Ice.objects; -public class Client +import test.Ice.objects.Test.InitialPrx; + +public class Client extends test.Util.Application { private static class MyObjectFactory implements Ice.ObjectFactory { - public Ice.Object - create(String type) + public Ice.Object create(String type) { if(type.equals("::Test::B")) { @@ -49,20 +50,19 @@ public class Client return new HI(); } - assert(false); // Should never be reached + assert (false); // Should never be reached return null; } - public void - destroy() + public void destroy() { // Nothing to do } } - private static int - run(String[] args, Ice.Communicator communicator) + public int run(String[] args) { + Ice.Communicator communicator = communicator(); Ice.ObjectFactory factory = new MyObjectFactory(); communicator.addObjectFactory(factory, "::Test::B"); communicator.addObjectFactory(factory, "::Test::C"); @@ -73,42 +73,24 @@ public class Client communicator.addObjectFactory(factory, "::Test::J"); communicator.addObjectFactory(factory, "::Test::H"); - InitialPrx initial = AllTests.allTests(communicator, false); + InitialPrx initial = AllTests.allTests(communicator, false, getWriter()); initial.shutdown(); return 0; } - public static void - main(String[] args) + protected Ice.InitializationData getInitData(Ice.StringSeqHolder argsH) { - int status = 0; - Ice.Communicator communicator = null; - - try - { - communicator = Ice.Util.initialize(args); - status = run(args, communicator); - } - catch(Exception ex) - { - ex.printStackTrace(); - status = 1; - } - - if(communicator != null) - { - try - { - communicator.destroy(); - } - catch(Ice.LocalException ex) - { - ex.printStackTrace(); - status = 1; - } - } + Ice.InitializationData initData = new Ice.InitializationData(); + initData.properties = Ice.Util.createProperties(argsH); + initData.properties.setProperty("Ice.Package.Test", "test.Ice.objects"); + return initData; + } + public static void main(String[] args) + { + Client app = new Client(); + int result = app.main("Client", args); System.gc(); - System.exit(status); + System.exit(result); } } |