// Copyright (c) ZeroC, Inc. All rights reserved. using System; using System.Threading.Tasks; using ZeroC.Test; namespace ZeroC.Ice.Test.SeqMapping { public class Client : TestHelper { public override Task RunAsync(string[] args) => AllTests.RunAsync(this, false); public static async Task Main(string[] args) { await using var communicator = CreateCommunicator(ref args); await communicator.ActivateAsync(); return await RunTestAsync(communicator, args); } } }