// ********************************************************************** // // Copyright (c) 2003-2017 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. // // ********************************************************************** using System; using System.Reflection; [assembly: CLSCompliant(true)] [assembly: AssemblyTitle("IceDiscoveryTest")] [assembly: AssemblyDescription("IceDiscovery test")] [assembly: AssemblyCompany("ZeroC, Inc.")] public class Client : TestCommon.Application { public override int run(string[] args) { int num; try { num = args.Length == 1 ? Int32.Parse(args[0]) : 0; } catch(FormatException) { num = 0; } AllTests.allTests(this, num); return 0; } public static int Main(string[] args) { Client app = new Client(); return app.runmain(args); } }