spec\Mdb\PayPal\Ipn\MessageFactory\InputStreamMessageFactorySpec::it_should_create_a_message_from_the_input_stream PHP Method

it_should_create_a_message_from_the_input_stream() public method

public it_should_create_a_message_from_the_input_stream ( InputStream $inputStream )
$inputStream Mdb\PayPal\Ipn\InputStream
    function it_should_create_a_message_from_the_input_stream(InputStream $inputStream)
    {
        $streamContents = 'foo=bar&baz=quz';
        $inputStream->getContents()->willReturn($streamContents);
        $this->createMessage()->shouldHaveType('Mdb\\PayPal\\Ipn\\Message');
    }