using NUnit.Framework; using Aurora.Proto.PartyV2; using Aurora.Services.Server; using Grpc.Core; namespace Aurora.test { public class Tests { private RemotePartyService.RemotePartyServiceClient _remotePartyService; private Channel _channel; [SetUp] public void Setup() { ServerService.Instance.Start("testParty", "asdf"); _channel = new Channel(string.Format("{0}:{1}", ServerService.GetLocalIPAddress(), 8080), ChannelCredentials.Insecure); _remotePartyService = new RemotePartyService.RemotePartyServiceClient(_channel); } [Test] public void Test2() { ListMembersResponse resp = _remotePartyService.ListMembers(new ListMembersRequest() { Parent = "party1", PageSize = 10, }); Assert.NotNull(resp); } } }