Exemplo n.º 1
0
        public override async Task RunAsync(string[] args)
        {
            await using Communicator communicator = Initialize(ref args);
            communicator.SetProperty("TestAdapter.Endpoints", GetTestEndpoint(0));
            ObjectAdapter adapter = communicator.CreateObjectAdapter("TestAdapter");

            adapter.Add("initial", new InitialI(adapter));
            AllTests.Run(this);
        }
Exemplo n.º 2
0
 public override async Task RunAsync(string[] args)
 {
     await using Communicator communicator = Initialize(ref args);
     await AllTests.Run(this).ShutdownAsync();
 }