Files
social-media/tests/Application.UnitTests/Common/Behaviours/RequestLoggerTests.cs
2024-08-03 04:17:04 -04:00

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>();
}
}