14 lines
291 B
C#
14 lines
291 B
C#
using Moq;
|
|
using FrostFS.Netmap;
|
|
|
|
namespace FrostFS.SDK.Tests;
|
|
|
|
public class NetmapMockFactory(string key) : ServiceBase(key)
|
|
{
|
|
public Mock<NetmapService.NetmapServiceClient> GetMock()
|
|
{
|
|
var mock = new Mock<NetmapService.NetmapServiceClient>();
|
|
|
|
return mock;
|
|
}
|
|
}
|