Eris\Generator\SetGeneratorTest::testShrinkEmptySet PHP Method

testShrinkEmptySet() public method

public testShrinkEmptySet ( )
    public function testShrinkEmptySet()
    {
        $generator = new SetGenerator($this->singleElementGenerator);
        $elements = $generator($size = 0, $this->rand);
        $this->assertEquals(0, count($elements->unbox()));
        $this->assertEquals(0, count($generator->shrink($elements)->unbox()));
    }