mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
Create PresenceHubTests.cs
This commit is contained in:
@@ -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<ILogger<PresenceHub>> _mockLogger;
|
||||
private Mock<IUserNotificationScopeService> _mockUserNotification;
|
||||
private Mock<IOnlineUserStore> _mockOnlineUserStore;
|
||||
private Mock<IHubUserAccessor> _mockHubUserAccessor;
|
||||
private Fixture _fixture;
|
||||
|
||||
[SetUp]
|
||||
public void SetUp()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user