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