29 lines
876 B
C#
29 lines
876 B
C#
|
using NUnit.Framework;
|
||
|
using Aurora.Proto.PartyV2;
|
||
|
using Aurora.Services.Server;
|
||
|
using Grpc.Core;
|
||
|
using System.Threading.Tasks;
|
||
|
using System.Linq;
|
||
|
|
||
|
namespace Aurora.test.ControllerTests
|
||
|
{
|
||
|
public class MediaControllerTests
|
||
|
{
|
||
|
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);
|
||
|
}
|
||
|
|
||
|
[TearDown]
|
||
|
public async Task TearDown()
|
||
|
{
|
||
|
await ServerService.Instance.Stop();
|
||
|
await _channel.ShutdownAsync();
|
||
|
}
|
||
|
}
|
||
|
}
|