Example #1
0
        public async Task CountAsync_10_ReturnsValidCount()
        {
            // Arrange
            const int expectedCount = TorrentsCount;

            // Act
            var count = await _torrentRepository.CountAsync();

            // Assert
            Assert.Equal(expectedCount, count);
        }