using Hutopy.Application.Common.Interfaces; using Moq; using NUnit.Framework; namespace Hutopy.Application.UnitTests.Common.Behaviours; public class RequestLoggerTests { private Mock _user = null!; private Mock _identityService = null!; [SetUp] public void Setup() { _user = new Mock(); _identityService = new Mock(); } }