Skip to content
Snippets Groups Projects
Commit f21f465b authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

make AsyncCallServerTest finish correctly

parent 2624cfb5
No related branches found
No related tags found
No related merge requests found
...@@ -54,7 +54,14 @@ namespace Grpc.Core.Internal.Tests ...@@ -54,7 +54,14 @@ namespace Grpc.Core.Internal.Tests
public void Init() public void Init()
{ {
var environment = GrpcEnvironment.AddRef(); var environment = GrpcEnvironment.AddRef();
server = new Server();
// Create a fake server just so we have an instance to refer to.
// The server won't actually be used at all.
server = new Server()
{
Ports = { { "localhost", 0, ServerCredentials.Insecure } }
};
server.Start();
fakeCall = new FakeNativeCall(); fakeCall = new FakeNativeCall();
asyncCallServer = new AsyncCallServer<string, string>( asyncCallServer = new AsyncCallServer<string, string>(
...@@ -67,6 +74,7 @@ namespace Grpc.Core.Internal.Tests ...@@ -67,6 +74,7 @@ namespace Grpc.Core.Internal.Tests
[TearDown] [TearDown]
public void Cleanup() public void Cleanup()
{ {
server.ShutdownAsync().Wait();
GrpcEnvironment.Release(); GrpcEnvironment.Release();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment