mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-01-14 22:18:43 +00:00
16 lines
292 B
C#
16 lines
292 B
C#
using LibMpc;
|
|
using Xunit;
|
|
|
|
namespace LibMpcTest
|
|
{
|
|
public partial class LibMpcTest : IClassFixture<MpdMock>, IClassFixture<MpcMock>
|
|
{
|
|
public LibMpcTest(MpcMock mpc)
|
|
{
|
|
Mpc = mpc.Client;
|
|
}
|
|
|
|
internal Mpc Mpc { get; }
|
|
}
|
|
}
|