Phue\Test\Transport\Adapter\StreamingTest::testClose PHP Method

testClose() public method

Test: Close streaming adapter
public testClose ( )
    public function testClose()
    {
        $this->streamingAdapter->open();
        $this->streamingAdapter->send(false, 'GET', 'dummy');
        $this->streamingAdapter->close();
        $this->assertAttributeEmpty('streamContext', $this->streamingAdapter);
        $this->assertAttributeEmpty('fileStream', $this->streamingAdapter);
    }