All checks were successful
DCO / DCO (pull_request) Successful in 41s
Signed-off-by: Pavel Gross <p.gross@yadro.com>
14 lines
290 B
C#
14 lines
290 B
C#
using Moq;
|
|
using FrostFS.Session;
|
|
|
|
namespace FrostFS.SDK.Tests;
|
|
|
|
public class SessionMock(string key) : ServiceBase(key)
|
|
{
|
|
public Mock<SessionService.SessionServiceClient> GetMock()
|
|
{
|
|
var mock = new Mock<SessionService.SessionServiceClient>();
|
|
|
|
return mock;
|
|
}
|
|
}
|