public async Task GetCountOfUnreadedNotificationsTest()
        {
            // Arrange

            // Act
            var response = await _controller.GetCountOfUnreadedNotifications();

            // Assert
            int count;

            Assert.IsTrue(response.TryGetContentValue(out count));

            Assert.AreNotEqual(count, 0);
        }