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