// // Copyright (c) ZeroC, Inc. All rights reserved. // using Test; namespace Ice { namespace acm { public class Client : TestHelper { override public void run(string[] args) { var properties = createTestProperties(ref args); properties.setProperty("Ice.Warn.Connections", "0"); using(var communicator = initialize(properties)) { AllTests.allTests(this); } } public static int Main(string[] args) { return TestDriver.runTest(args); } } } }