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

testObjectPropertyBlobNotEncoded() public method

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