Google\Cloud\Tests\Datastore\EntityMapperTest::testObjectPropertyBlob PHP Method

testObjectPropertyBlob() public method

    public function testObjectPropertyBlob()
    {
        $res = $this->mapper->valueObject(new Blob('hello world'));
        $this->assertEquals('hello world', base64_decode($res['blobValue']));
    }