19 lines
418 B
C#
19 lines
418 B
C#
using Hutopy.Application.Common.Interfaces;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
|
|
namespace Hutopy.Application.UnitTests.Common.Behaviours;
|
|
|
|
public class RequestLoggerTests
|
|
{
|
|
private Mock<IUser> _user = null!;
|
|
private Mock<IIdentityService> _identityService = null!;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
_user = new Mock<IUser>();
|
|
_identityService = new Mock<IIdentityService>();
|
|
}
|
|
}
|