public async void ClientValidatorReturnsCorrectResult(IClient testClient, bool expectedResult)
        {
            var sut    = new ClientValidator();
            var result = await sut.IsValidAsync(testClient);

            result.Should().Be(expectedResult);
        }