spec\PHPSpec2\Matcher\CountMatcher::it_should_match_proper_countable_count PHP Méthode

it_should_match_proper_countable_count() public méthode

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