// // Copyright (c) ZeroC, Inc. All rights reserved. // using System; using System.Reflection; [assembly: CLSCompliant(true)] [assembly: AssemblyTitle("IceDiscoveryTest")] [assembly: AssemblyDescription("IceDiscovery test")] [assembly: AssemblyCompany("ZeroC, Inc.")] public class Client : Test.TestHelper { public override void run(string[] args) { using(var communicator = initialize(ref args)) { int num; try { num = args.Length == 1 ? Int32.Parse(args[0]) : 0; } catch(FormatException) { num = 0; } AllTests.allTests(this, num); } } public static int Main(string[] args) { return Test.TestDriver.runTest(args); } }