mirror of
https://github.com/microsoft/autogen.git
synced 2025-11-16 01:55:18 +00:00
23 lines
622 B
C#
23 lines
622 B
C#
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
// TestBase.cs
|
||
|
|
|
||
|
|
namespace Microsoft.AutoGen.Core.Grpc.Tests;
|
||
|
|
|
||
|
|
public class TestBase
|
||
|
|
{
|
||
|
|
public TestBase()
|
||
|
|
{
|
||
|
|
try
|
||
|
|
{
|
||
|
|
// For some reason the first call to StartAsync() throws when these tests
|
||
|
|
// run in parallel, even though the port does not actually collide between
|
||
|
|
// different instances of GrpcAgentRuntimeFixture. This is a workaround.
|
||
|
|
_ = new GrpcAgentRuntimeFixture().StartAsync().Result;
|
||
|
|
}
|
||
|
|
catch (Exception e)
|
||
|
|
{
|
||
|
|
Console.WriteLine(e);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|