From d5299f2b7923109b075339d515b73839b51332cf Mon Sep 17 00:00:00 2001 From: Artemy <109195690+stalcker2288969@users.noreply.github.com> Date: Wed, 23 Jul 2025 22:46:16 +0700 Subject: [PATCH] Create PresenceHubTests.cs --- Govor.API.Tests/Hubs/PresenceHubTests.cs | 26 ++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Govor.API.Tests/Hubs/PresenceHubTests.cs 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