diff options
Diffstat (limited to 'java/test/Ice/defaultValue/Client.java')
-rw-r--r-- | java/test/Ice/defaultValue/Client.java | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/java/test/Ice/defaultValue/Client.java b/java/test/Ice/defaultValue/Client.java new file mode 100644 index 00000000000..7621499a50f --- /dev/null +++ b/java/test/Ice/defaultValue/Client.java @@ -0,0 +1,28 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2010 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +package test.Ice.defaultValue; + +public class Client extends test.Util.Application +{ + public int run(String[] args) + { + AllTests.allTests(this, getWriter()); + return 0; + } + + public static void main(String[] args) + { + Client c = new Client(); + int status = c.main("Client", args); + + System.gc(); + System.exit(status); + } +} |