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

it_does_not_match_wrong_array_count() public method

    function it_does_not_match_wrong_array_count()
    {
        $this->shouldThrow(new FailureException('Expected countable to have 2 items, but got 3.'))->duringPositiveMatch('haveCount', array(1, 2, 3), array(2));
    }