GuzzleHttp\Test\Handler\ProxyTest::testSendsToNonStreaming PHP Method

testSendsToNonStreaming() public method

    public function testSendsToNonStreaming()
    {
        $a = $b = null;
        $m1 = new MockHandler([function ($v) use(&$a) {
            $a = $v;
        }]);
        $m2 = new MockHandler([function ($v) use(&$b) {
            $b = $v;
        }]);
        $h = Proxy::wrapStreaming($m1, $m2);
        $h(new Request('GET', 'http://foo.com'), ['stream' => true]);
        $this->assertNull($a);
        $this->assertNotNull($b);
    }