Google\Cloud\Tests\Datastore\BlobTest::testBlobStreamInterface PHP Метод

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

    public function testBlobStreamInterface()
    {
        $blob = new Blob(Psr7\stream_for('hello world'));
        $this->assertEquals('hello world', (string) $blob);
    }