Eris\Generator\SuchThatGeneratorTest::testGivesUpGenerationIfTheFilterIsNotSatisfiedTooManyTimes PHP Method

testGivesUpGenerationIfTheFilterIsNotSatisfiedTooManyTimes() public method

    public function testGivesUpGenerationIfTheFilterIsNotSatisfiedTooManyTimes()
    {
        $generator = new SuchThatGenerator(function ($n) {
            return $n % 2 == 0;
        }, ConstantGenerator::box(11));
        $generator->__invoke($this->size, $this->rand);
    }