Вход Регистрация
Файл: vkolhoze.com/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/AbstractEntityBodyDecoratorTest.php
Строк: 37
<?php

namespace GuzzleTestsHttp;

use 
GuzzleHttpEntityBody;

/**
 * @covers GuzzleHttpAbstractEntityBodyDecorator
 */
class AbstractEntityBodyDecoratorTest extends GuzzleTestsGuzzleTestCase
{
    public function 
testDecoratesEntityBody()
    {
        
$e EntityBody::factory();
        
$mock $this->getMockForAbstractClass('GuzzleHttpAbstractEntityBodyDecorator', array($e));

        
$this->assertSame($e->getStream(), $mock->getStream());
        
$this->assertSame($e->getContentLength(), $mock->getContentLength());
        
$this->assertSame($e->getSize(), $mock->getSize());
        
$this->assertSame($e->getContentMd5(), $mock->getContentMd5());
        
$this->assertSame($e->getContentType(), $mock->getContentType());
        
$this->assertSame($e->__toString(), $mock->__toString());
        
$this->assertSame($e->getUri(), $mock->getUri());
        
$this->assertSame($e->getStreamType(), $mock->getStreamType());
        
$this->assertSame($e->getWrapper(), $mock->getWrapper());
        
$this->assertSame($e->getWrapperData(), $mock->getWrapperData());
        
$this->assertSame($e->isReadable(), $mock->isReadable());
        
$this->assertSame($e->isWritable(), $mock->isWritable());
        
$this->assertSame($e->isConsumed(), $mock->isConsumed());
        
$this->assertSame($e->isLocal(), $mock->isLocal());
        
$this->assertSame($e->isSeekable(), $mock->isSeekable());
        
$this->assertSame($e->getContentEncoding(), $mock->getContentEncoding());
    }
}
Онлайн: 2
Реклама