1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2024-09-16 05:30:09 +00:00
MpcNET/LibMpcTest/LibMpcTest.cs

25 lines
478 B
C#

using LibMpc;
using System.Diagnostics;
using Xunit;
namespace LibMpcTest
{
public partial class LibMpcTest : IClassFixture<MpdMock>, IClassFixture<MpcMock>
{
public LibMpcTest(MpcMock mpc)
{
Mpc = mpc.Client;
}
internal Mpc Mpc { get; }
}
internal class TestUtils
{
internal static void WriteLine(string value)
{
Debug.WriteLine(value);
}
}
}