spec\Prophecy\Prophecy\MethodProphecySpec::its_withArguments_transforms_passed_array_into_ArgumentsWildcard PHP Method

its_withArguments_transforms_passed_array_into_ArgumentsWildcard() public method

    function its_withArguments_transforms_passed_array_into_ArgumentsWildcard()
    {
        $this->withArguments(array(42, 33));
        $wildcard = $this->getArgumentsWildcard();
        $wildcard->shouldNotBe(null);
        $wildcard->__toString()->shouldReturn('exact(42), exact(33)');
    }
MethodProphecySpec