// // Copyright (c) ZeroC, Inc. All rights reserved. // using System; using System.Reflection; using System.Linq; using System.Collections.Generic; [assembly: CLSCompliant(true)] [assembly: AssemblyTitle("IceTest")] [assembly: AssemblyDescription("Ice test")] [assembly: AssemblyCompany("ZeroC, Inc.")] public class Client : Test.TestHelper { public override void run(string[] args) { Ice.Properties properties = createTestProperties(ref args); properties.setProperty("Ice.Warn.Connections", "0"); using(var communicator = initialize(properties)) { List ports = args.Select(v => Int32.Parse(v)).ToList(); if(ports.Count == 0) { throw new ArgumentException("Client: no ports specified"); } AllTests.allTests(this, ports); } } public static int Main(string[] args) { return Test.TestDriver.runTest(args); } }