public async Task GetByClientIdAsync_ShouldReturnNullGivenTheClientIdIsNotFound()
        {
            var nonExistantClientId = _fixture.Create <int>();

            var result = await _advertisementRepository.GetByClientIdAsync(nonExistantClientId);

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