Eris\Generator\ConstantGeneratorTest::testPicksAlwaysTheValue PHP Method

testPicksAlwaysTheValue() public method

    public function testPicksAlwaysTheValue()
    {
        $generator = new ConstantGenerator(true);
        for ($i = 0; $i < 50; $i++) {
            $this->assertTrue($generator($this->size, $this->rand)->unbox());
        }
    }