diff --git a/Govor.API.Tests/Hubs/PresenceHubTests.cs b/Govor.API.Tests/Hubs/PresenceHubTests.cs new file mode 100644 index 0000000..2a39aae --- /dev/null +++ b/Govor.API.Tests/Hubs/PresenceHubTests.cs @@ -0,0 +1,26 @@ +using AutoFixture; +using Govor.API.Common.SignalR.Helpers; +using Govor.API.Hubs; +using Govor.Application.Interfaces.UserOnlineStatus; +using Microsoft.Extensions.Logging; +using Moq; + +namespace Govor.API.Tests.Hubs; + +[TestFixture] +[TestOf(typeof(PresenceHub))] +public class PresenceHubTests +{ + + private Mock> _mockLogger; + private Mock _mockUserNotification; + private Mock _mockOnlineUserStore; + private Mock _mockHubUserAccessor; + private Fixture _fixture; + + [SetUp] + public void SetUp() + { + + } +} \ No newline at end of file