From f6bb0396e7d8fd12ed50f72ab9fc99436d418576 Mon Sep 17 00:00:00 2001 From: Matthew Newhook Date: Thu, 23 Oct 2014 16:28:09 -0230 Subject: More gradle changes. Moved android stuff to its own package. Moved java tests to src/main/java/test subdirectory. --- java/test/Ice/serialize/Client.java | 42 ------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 java/test/Ice/serialize/Client.java (limited to 'java/test/Ice/serialize/Client.java') diff --git a/java/test/Ice/serialize/Client.java b/java/test/Ice/serialize/Client.java deleted file mode 100644 index ffa339ba2ca..00000000000 --- a/java/test/Ice/serialize/Client.java +++ /dev/null @@ -1,42 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2014 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.serialize; -import test.Ice.serialize.Test.*; - -public class Client extends test.Util.Application -{ - @Override - public int - run(String[] args) - { - java.io.PrintWriter out = getWriter(); - InitialPrx initial = AllTests.allTests(communicator(), false, out); - initial.shutdown(); - return 0; - } - - @Override - protected Ice.InitializationData getInitData(Ice.StringSeqHolder argsH) - { - Ice.InitializationData initData = new Ice.InitializationData(); - initData.properties = Ice.Util.createProperties(argsH); - initData.properties.setProperty("Ice.Package.Test", "test.Ice.serialize"); - return initData; - } - - public static void main(String[] args) - { - Client c = new Client(); - int status = c.main("Client", args); - - System.gc(); - System.exit(status); - } -} -- cgit v1.2.3