Ejemplo n.º 1
0
        public async Task GetAll_ShouldReturnEmptyArray_WhenThereIsNoClientsInDb()
        {
            // Arrange
            _clientRepository.GetAll().ReturnsNull();

            // Act
            var clients = _sut.GetAll();

            // Assert
            clients.Should().BeNull();
        }