GuzzleHttp\Tests\Psr7\FunctionsTest::testCanSetSize PHP Метод

testCanSetSize() публичный Метод

public testCanSetSize ( )
    public function testCanSetSize()
    {
        $s = Psr7\stream_for('', ['size' => 10]);
        $this->assertEquals(10, $s->getSize());
    }
FunctionsTest