spec\PhpSpec\Matcher\ArrayCountMatcherSpec::it_matches_proper_countable_count PHP Method

it_matches_proper_countable_count() public method

public it_matches_proper_countable_count ( ArrayObject $countable )
$countable ArrayObject
    function it_matches_proper_countable_count(ArrayObject $countable)
    {
        $countable->count()->willReturn(4);
        $this->shouldNotThrow()->duringPositiveMatch('haveCount', $countable, array(4));
    }