public void verificationShouldNotPassForUnderagePerson()
        {
            Person personToVerify = PersonWithAge(17);

            var verificationResult = service.Passes(personToVerify);

            verificationResult.Should().BeFalse();
        }