public async Task GetAllAsync_ShouldReturnEmptyListGivenNoItemsAreFound()
        {
            var result = await _advertisementRepository.GetAllAsync();

            result.Should().NotBeNull();
            result.Should().BeEmpty();
        }