Google\Cloud\Tests\Datastore\BlobTest::testBlobStreamInterface PHP Method

testBlobStreamInterface() public method

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