lithium\tests\integration\net\socket\ContextTest::testSendWithObject PHP Method

testSendWithObject() public method

public testSendWithObject ( )
    public function testSendWithObject()
    {
        $stream = new Context($this->_testConfig);
        $this->assertInternalType('resource', $stream->open());
        $result = $stream->send(new Request($this->_testConfig), array('response' => 'lithium\\net\\http\\Response'));
        $this->assertInstanceOf('lithium\\net\\http\\Response', $result);
        $this->assertPattern("/^HTTP/", (string) $result);
        $this->assertTrue($stream->eof());
    }