spec\Prophecy\Argument\ArgumentsWildcardSpec::it_wraps_non_token_arguments_into_ExactValueToken PHP Method

it_wraps_non_token_arguments_into_ExactValueToken() public method

public it_wraps_non_token_arguments_into_ExactValueToken ( stdClass $object )
$object stdClass
    function it_wraps_non_token_arguments_into_ExactValueToken(\stdClass $object)
    {
        $this->beConstructedWith(array(42, 'zet', $object));
        $class = get_class($object->getWrappedObject());
        $hash = spl_object_hash($object->getWrappedObject());
        $this->__toString()->shouldReturn("exact(42), exact(\"zet\"), exact({$class}:{$hash} Object (\n    'objectProphecy' => Prophecy\\Prophecy\\ObjectProphecy Object (*Prophecy*)\n))");
    }